Okay, I feel stupid again I can't remember how to use a module, since it's been about 3 years since I learned about one. I don't use vb much, and am trying to relearn it.

take a simple module:

VB Code:
  1. Module myModule
  2.     Dim sString1 as String
  3. End Module

How do I use the module in form1, form2, whatever?
Or, if I am way off base, my ultimate goal is to have sString1 visible to pretty much the entire application (preferably without having to jump through too many hoops)