E
Eric B.
I posted about this before but it is still bugging me.
I am creating an instance of form2 from my form1, and although I have the
StartPosition set to CenterParent for the form2 it is not appearing there.
private void preferencesToolStripMenuItem_Click(object sender,
EventArgs e)
{
Form_Preferences Preferences = new Form_Preferences();
this.AddOwnedForm(Preferences);
Preferences.Show();
}
Any ideas?
Eric B.
I am creating an instance of form2 from my form1, and although I have the
StartPosition set to CenterParent for the form2 it is not appearing there.
private void preferencesToolStripMenuItem_Click(object sender,
EventArgs e)
{
Form_Preferences Preferences = new Form_Preferences();
this.AddOwnedForm(Preferences);
Preferences.Show();
}
Any ideas?
Eric B.