Mark Simms
marksimms at verizon.net
Tue Sep 20 20:16:03 CDT 2011
The only problem then is enforcing a SINGLE INSTANCE of that class. Somehow, the Initialize method must trap the second instance.....perhaps a STATIC variable set to true ? This would effectively provide you with a static class which is what you want here. > I think that I am going to go with JWC's concept of this. Assuming of > course > that I have it right, you create a class that houses all the otherwise > global variable, and they are protected by Get/Set methods. This > appears to > me the superior way to go. No way you can touch them. fork with them, > without a specific call. No accidents, no side effects. Good for you,