ActiveDevice : STypes = OO;
I have a unit that does not contain a form, dedicated to global functions and variables. I'm trying to access it from a Unit that contains a form.The functions share nicely but I can't seem to get the right location/syntax in the global unit to "globalize" a TStringList variable. When I try to call the variable in the target unit from the Form unit, the compile complains with: "Error: Identifier not found "StrLst." The variable I'm trying to make global, StrLst is denoted below by a string of ///////////////. I've tried every combination of public/private declarations I can think of and they either leave me with a cryptic, "Expected ;..." or other.