Hi
How can i change the position of one button in a vb.net form? I tried with
Me.Button1.Location.X = 200
Thank you
Printable View
Hi
How can i change the position of one button in a vb.net form? I tried with
Me.Button1.Location.X = 200
Thank you
Moved From The CodeBank
Try...
Code:Me.Button1.Location = New Point(200, Me.Button1.Location.Y)
You should also be able to change the Top and Left properties.
Problem solved
Thank you guys
This forum rocks