I've also see people using constants to simulate string enums:
Class MyStrings Public Const APersonalName as String = "John" Public Const ALastName as String = "Smith" Public Const SaySomethingAnything as String = "42!" End Class
Haven't dedicated much though to whether it's a good idea or not.
String Enums
DLDeveloper
Thona
I've also see people using constants to simulate string enums:
Class MyStrings
Public Const APersonalName as String = "John"
Public Const ALastName as String = "Smith"
Public Const SaySomethingAnything as String = "42!"
End Class
Haven't dedicated much though to whether it's a good idea or not.
christian p