I know this is most likely a stupid question but i can't figure it out for the life of me.
I need a variable to be available to all Modules so this is the location of the sub and everything else
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Dim trait As String
End Sub
But yet when I go to the other Modules i can't pull up the value of "trait", I tried declaring it again same sub on the other module but still no go... what am i not doing?????
I need a variable to be available to all Modules so this is the location of the sub and everything else
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Dim trait As String
End Sub
But yet when I go to the other Modules i can't pull up the value of "trait", I tried declaring it again same sub on the other module but still no go... what am i not doing?????