Levu
Well-known member
Anyone got any good guides on how to make new buttons, and controlls by programming? Not just the drag and drop..
would realy help, thanks
would realy help, thanks
Dim b As New Button
b.Location = New Point(50, 100)
b.Text = "OK"
AddHandler b.Click, AddressOf ButtonClick
Me.Controls.Add(b)