child form location

  • Thread starter Thread starter Alexander Vasilevsky
  • Start date Start date
A

Alexander Vasilevsky

How child form to do appear in given position.
Trying to do so:
Form fRegistration = new Form();
fRegistration.Location = new Point(200,200);
fRegistration.Show();http://www.alvas.net - Audio tools for C# and VB.Net
developers + Christmas discount
 
Alexander Vasilevsky said:
How child form to do appear in given position.
Trying to do so:
Form fRegistration = new Form();
fRegistration.Location = new Point(200,200);
fRegistration.Show()

Set the form's 'StartPosition' property to 'FormStartPosition.Manual'.
 
Back
Top