Umm, I don´t know. I found something useful in my VbBook :D
Example ( "(1) and (2) in both forms shouldnt be in the code ;) )
Option Explicit
Public blah As Integer
Private Sub Form(1)_Load()
Blah = 10
lbl.Caption = Blah
Form2.Visible = True
End Sub
Private Sub Form(2)_Load()
lbl.Caption = Form1.Blah
End Sub
A declaration in "Form1" causes the need to use it from there (baad english :P ) with "Form1.Blah".
You could also Declare it in the Public-Module part. But I don´t really understand this method.
Maybe you do...
I hope this helps in some way. I tried, and it worked ^^