soulidentities
Member
- Joined
- Aug 28, 2008
- Messages
- 13
- Programming Experience
- Beginner
Hi friend
I am having a problem with passing a button and form to a method.
Let me explain detail.
when i click a button it will send some this button and a form to a method. The method then do some job. like
Private Sub btnEducationNFinance_Click(object sender, EventArgs e)
showForm(button1, i , formName); //Any Wrong ?
End Sub
private Sub ShowForm(.......) // I need this declearation
form1 frm = new formName);
frm.show();
End Sub
Thanks
I am having a problem with passing a button and form to a method.
Let me explain detail.
when i click a button it will send some this button and a form to a method. The method then do some job. like
Private Sub btnEducationNFinance_Click(object sender, EventArgs e)
showForm(button1, i , formName); //Any Wrong ?
End Sub
private Sub ShowForm(.......) // I need this declearation
form1 frm = new formName);
frm.show();
End Sub
Thanks
Last edited: