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

Re: Moveable Textboxes by Mohamoss

Mohamoss
Thu Jan 22 11:20:15 CST 2004

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


--
Mohamed Mossad
Microsoft GTSC Developer support for Middle East




"VJ" <vijaybalki@yahoo.com> wrote in message
news:eMWQtBQ4DHA.1816@TK2MSFTNGP11.phx.gbl...
> 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
>
>