Hello All again,
why I cant set Form location during FormLoading?
private void CopFrm_Load(object sender, EventArgs e)
{
Form.Location = new.Point(200,450);
}
Starting Form is set to manualy in properties.
I want to call point.X and PointY from the main menu and set the opening new Form to this point.
How can I do it?
Thanx again

Javeed M ShaikhPosted Aug 22, 2012, 10:57 AM
VB
Me.Location = New Point(200, 450)
C#
this.Location = new Point(200, 450)
ilhami caliskanPosted Aug 22, 2012, 11:03 AM
ilhami caliskanPosted Aug 22, 2012, 10:50 AM
I looked to http://msdn.microsoft.com/en-us/library/52aha046(v=vs.80).aspx
this code is written there and I tried without success.
Javeed M ShaikhPosted Aug 22, 2012, 10:41 AM