well im new to vb.net so i'll be asking some pritty simple stuff(to u) but anyways wats the code for menuItem2 click because when i goto view code or double click it just brings me to the code instead of inserting the private sub part.
Printable View
well im new to vb.net so i'll be asking some pritty simple stuff(to u) but anyways wats the code for menuItem2 click because when i goto view code or double click it just brings me to the code instead of inserting the private sub part.
It should create the sub for you automatically. I don't know why it wouldn't but this is the click event for a menuitem
VB Code:
Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click ''''Your code here End Sub