VB .NET - Modules?

Bassist695

Junior Member
Mar 17, 2002
11
0
0
I programmed in VB 6 all last summer, and made good use of it's modules where necessary. However in VB .NET, I can't seem to find such things in which to store global variables that will be used by multiple forms. Is there a way to do this in a similar fashion?

Thanks.
 

BuckleDownBen

Banned
Jun 11, 2001
519
0
0
If I make a Windows Application, I can right-click on WindowsApplication1 in the Project Explorer and select Add>Add Module.
 

mankey

Member
Jan 23, 2001
34
0
0
i believe the keyword you are looking for is "Shared" in vb.net and "static" in c#. good luck.