Yep, Paul's got it right. You can create a "static" class somewhere to house your global variables. Then, just make the variables (or properties that wrap the variables) public and shared (static) and you'll be able to access them from anywhere within the application.And in VB, you can even import the class name like this so you can reference the variables without having to type the classname first:
Imports MyRootNamespace.MyStaticClass