I declared (Dim) a simple string field "TestString" in my main module under "Process Globals"
I added another module, but it does not recognize the "TestString" variable I created in the Main Module when I try to assig a value. The variable shows up as red in the second module. This also happens in the opposite direct (declaring the variable in the second module under "Process Globals", the main module does not recognize the variable.
I have 8 string variables defined in Main under Process_Globals. When I try to refer to them in another module using Main."string_name" only 4 of the string variables are visible and the ones not visible give a compiler error.