ShowDialog abosult positioning

  • Thread starter Thread starter Mark Bosley
  • Start date Start date
M

Mark Bosley

within a form I am launching another form of type miniMe.
I am trying to line it up with something on the parent form- Form1.However,
the location property does not seem to change its location.
how can i do this?

mm=new miniMe();


mm.Location=new Point(200,200);

mm.Size=new Size(72,20);

mm.ShowDialog(this);
 
Mark Bosley said:
within a form I am launching another form of type miniMe.
I am trying to line it up with something on the parent form- Form1.However,
the location property does not seem to change its location.
how can i do this?

Make sure the form's 'StartPosition' property is set to 'Manual'.
 
Back
Top