harrymangurian Posted September 24, 2003 Posted September 24, 2003 How do you move a form in .NET what is the equivalent of: Form1.Move x,y ? Quote
*Experts* mutant Posted September 24, 2003 *Experts* Posted September 24, 2003 You can move it using the Location property: Form.Location = New Point(100,100) Quote
AlexCode Posted September 24, 2003 Posted September 24, 2003 Just remember that you'll have to use Client or Screen coordenates if the form is an MDIChild or a Parent Form... The coordenates may vary in diferent screen resolutions... Quote Software bugs are impossible to detect by anybody except the end user.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.