rmokkenstorm
Freshman
- Joined
- Feb 20, 2006
- Messages
- 31
I feel really stupid by asking this.
On my form I have a button.
When the user clicks the button he should open a form and close the otherone.
just like a hyperlink in HTML with the same target.
my code is
But now he opens the form above the otherone..
On my form I have a button.
When the user clicks the button he should open a form and close the otherone.
just like a hyperlink in HTML with the same target.
my code is
Code:
private void btnButton1_Click(object sender, System.EventArgs e)
{
Agenda frm = new Agenda();
frm.ShowDialog();
}