All of your menu items have a Click event associated with them so your method might look something like this:
VB:
Private Sub menuItem6_Click(ByVal Sender as Object, ByVal e as System.EventArgs)
End Sub
C#
private void menuItem6_Click(object sender, System.EventArgs e)
{
}
From here is where you will call your other forms so something like this:
VB:
Private Sub menuItem6_Click(ByVal Sender as Object, ByVal e as System.EventArgs)
Dim frm as New form2()
frm.Show()
End Sub
C#
private void menuItem6_Click(object sender, System.EventArgs e)
{
form2 frm = new form2();
frm.Show();
}
Obviously form2 will be the name of the Form you are wanting to work with. In so far as your question about generic forms that handle multiple different secnarios I would suggest overloading your constructors so that you can know how the generic form should be set up so:
Dim frm as New form2(<value>)
Dim frm as New form2(<value>, <value>)
Dim frm as New form2(<value>, <value>, <value>)
etc.
Hope that helps
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========