Sorry, this may be a dumb question, but if I post the db, will it have identifying information in it? Like my Windows username, etc.? I wouldn't want this info in the wild.
I am using 2007, but my database is saved as a 2003 mdb file. I have one completely empty form. In the module behind the form, I have only one statement, which is this:
Public thisglobalvariable As String
In the other module (not the one attached to the form), I have this:
Sub Tester()
Form_frmSample.thisglobalvariable = "this"
MsgBox (Form_frmSample.thisglobalvariable)
End Sub
When I run the subroutine in the module, the messagebox pops up with the variable's value correctly set to "this", even when the form itself is not open.
Duluter