A one-dimensional string is not allowed, but an array of strings seems to work?
Sub Process_Globals
Private x As String
Private y() As String
End Sub
Private Sub AppStart
x = "123"
y(0) = "123"
End Sub
'Error compiling program. Error description: Cannot set a Const variable (global
'non-primitive variables are always constants). Occurred on line: 14, x = "123"
Sub Process_Globals
Private x As String
Private y() As String
End Sub
Private Sub AppStart
x = "123"
y(0) = "123"
End Sub
'Error compiling program. Error description: Cannot set a Const variable (global
'non-primitive variables are always constants). Occurred on line: 14, x = "123"