Please help add module

FFEMT1972

New member
Joined
Nov 27, 2005
Messages
2
Location
Antioch, California
Programming Experience
Beginner
I am using VB. NET 2003. I have it installed on my desktop and laptop. I just noticed that on my laptop. Under the "Projects" menu item, the "Add Module" option is not there (it is on my desktop), when I try to manually add a module, this is the code I use (to enable XP style buttons, etc)...
VB.NET:
Module Module1
  Public Sub Main()
    Application.DoEvents()
    Application.EnableVisualStyles()
    Application.Run(new Form1())
  End Sub
End Module
The major problem is... the EnableVisualStyles() is not the list of options!!! :mad:
 
Back
Top