Organisation of Public Constants.
Keeping track of Public Constants can be difficult.
They do not lend themselves to easy organisation and we can not use Intellisense to display them.
The method presented here is to create small class modules to contain related constants.
We can then combine those related class modules into a single Constants class module.
For example:-
Class 1:
Class clsConstFill …
Read more
Keeping track of Public Constants can be difficult.
They do not lend themselves to easy organisation and we can not use Intellisense to display them.
The method presented here is to create small class modules to contain related constants.
We can then combine those related class modules into a single Constants class module.
For example:-
Class 1:
Class clsConstFill …
Code:
Option Explicit
Option Compare Text
Public SOLID As Long
Public TRANSPARENT...
Read more