- Apr 24, 2005
- 553
- 4
- 81
Is there a special type of Const that can be initialized in code separately from declaration? It's like a write-once variable, that once you set its value, it becomes a constant.
It's like
Public Const sSERVER_NAME As String
'-- And then, later:
sSERVER_NAME = "windows"
?
It's like
Public Const sSERVER_NAME As String
'-- And then, later:
sSERVER_NAME = "windows"
?