|
-
Jan 6th, 2000, 04:40 AM
#1
Thread Starter
Addicted Member
Im having a little trouble. I declare a variable in my module:
Dim W1
now in one form, I set the variable as say "qwerty" (string). But when I open the next form, and go to load the variable, its blank. What am I doing wrong?(this is my first time making a module to hold variables)
Thanks
-
Jan 6th, 2000, 04:45 AM
#2
You need to Dimension the Variable as Pubilc in your Module, ie.
Public W1 As String
Then it'll be visible to everything within the Application.
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|