Hi,
I know the language as it currently stands does not support constant values, so I did the following: Create a Code Module called "Constants"
---------------------------------------------
'Code module
'Subs in this code module will be accessible from all modules.
Sub Process_Globals
abc = "a"
def = "12#"
End Sub
---------------------------------------------
When I now use code completion it give me the following options:
Constants._abc
Constants._def
If I however use it like that the compiler complains - if I use Constants.abc it works ...