Form.StartPosition = FormStartPosition.Manual;
Form.Left = whateverX;
Form.Top = whateverY;
or
Form.Location = new Point(whateverX, whateverY);
__________________
Sorry, but I don't answer questions by PM or email.
Please post your queries in the forum.
|