If I have a macro with two subs, how would I get one of them to access variables declared in the other? I thought it was just SubName.VariableName, but that's not working...

example:
VB Code:
  1. Sub Main()
  2.    Dim Variable1 as Integer
  3. End Sub
  4.  
  5. Sub NotMain()
  6.    ' how do I access Variable1?
  7. End Sub