S
scorpion53061
Is driving me nuts
In module 1....
Public pricing1 as String
Sub getPrice1
'do this to get price 1
price1 = "100"
MsgBox(price1)
End Sub
in the event procedure of the form
Sub getPricing
MsgBox(price1)
End Sub
The message box in the module produces the string.
The message box in the event procedure shows it is empty.
I also have noticed when I try to format a string not declared in a module
it says "object reference to a non shared member requires an object
reference."
I tried sharing the sub in teh module and it wont allow that.
Modules are all about sharing......
anyone have ideas?
In module 1....
Public pricing1 as String
Sub getPrice1
'do this to get price 1
price1 = "100"
MsgBox(price1)
End Sub
in the event procedure of the form
Sub getPricing
MsgBox(price1)
End Sub
The message box in the module produces the string.
The message box in the event procedure shows it is empty.
I also have noticed when I try to format a string not declared in a module
it says "object reference to a non shared member requires an object
reference."
I tried sharing the sub in teh module and it wont allow that.
Modules are all about sharing......
anyone have ideas?