child form location

  • Thread starter Alexander Vasilevsky
  • 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
 
H

Herfried K. Wagner [MVP]

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'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top