I'm reviewing some legacy VB6 code using WordPad (since I don't have VB6 installed). After many of the variable declarations at the module level, I see a second line that sets some sort of attribute for the variable, as shown in the example below. It appears that the attribute number, 1073741852, is the same for all of the declarations.
Public testPath as Integer
Attribute TestPath.VB_VarUserMemID = 1073741852
Since I don't have the code open in VB6, I'm not sure if the attribute lines are visible in the VB6 ide.
Does anyone know the significance of this attribute?