Name 'IntForm1' is not declared.

bi0h4z4rd

New member
Joined
Jul 10, 2003
Messages
3
Since Im using the Windows Forms, I looked at the code and manually added:
[Im making a Msg for the "help" menu]

Private Sub MenuItem21_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MenuItem21.Click
IntForm = MsgBox("Version 0.1 Help", MsgBoxStyle.OKOnly, "About...")
End Sub

This is for the HELP section (im creating a program that does nothing. Just learning)

The error is: Name IntForm1 is not declared.

More info:

C:\Documents and Settings\bi0h4z4rd\My Documents\Visual Studio Projects\WindowsApplication2\My Projects\Form1.vb(240): Name IntForm1 is not declared.


Can someone help and also provide a DETAILED and more guide to making menus adding them to work. I looked all over google and found nothing. Too much articles on VS.net.

Please help, thanks and appreciated.
 
You dont need to type
IntForm = MsgBox("Version 0.1 Help", MsgBoxStyle.OKOnly, "About...")

MsgBox("Version 0.1 Help", MsgBoxStyle.OKOnly, "About...") is enough.
 
Back
Top