Moveable Textboxes

  • Thread starter Thread starter VJ
  • Start date Start date
V

VJ

I wan't the users of my app to position and size textboxes on a specific
screen. I saw a few examples for sizing textboxes at run-time, but none for
moving textboxes around. Could some give me pointers

Thanks
VJ
 
Hi VJ

For the position you have to play with the location

For example

this.TextBox1.Location = new System.Drawing.Point(232, 56);

put notice you have to keep the x and y you give as arg to the point
constructor inside the frame of your form



i hope this is of any help
 
Back
Top