Login | |
|
 |
RE: I'm interest in this topic...but, could you please ... - 6/3/2008 9:26:01 AM
|
|
 |
|
| |
ebgreen
Posts: 5041
Score: 31
Joined: 7/12/2005
Status: offline
|
Ok, so lets be clear a constant is simply a variable that does not change (I know oxymoron but that is really what it is). So this: Const HKEY_CLASSES_ROOT = "FOO" Is technically correct. It wouldn't let you later use that constant to open the Classes Root hive, but as far as the interpreter is concerned it is just fine. As for making the constants private, we have no way of knowing what the environment that you are developing in is like so we have no way to know if you need to make them private or not.
_____________________________
"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm http://www.visualbasicscript.com/m_47117/tm.htm
|
|
| |
|
|
|
|
|