VB6 class modules have no parameterized constructors. What solution have you chosen for this? Using facory methods seems like the obvious choice, but surprise me!
|
I usually stick to factory methods, where I put the "constructors" for related classes in the same module (.BAS extension). Sadly, this is far from optimal since you can't really limit access to the normal object creation in VB6 - you just have to make a point of only creating your objects through the factory. What makes it worse is having to jump between the actual object and your factory method, since organization in the IDE itself is cumbersome at best. |
|||||||||||||
|
|
How about using the available class initializer? This behaves like a parameterless constructor:
|
|||||||
|
|
I use a mix of factory functions (in parent classes) that then create an instance of the object and call a Friend Class
Class
I know the |
|||
|
|
|
I have seen folks load up parameters into Environment variables and then read them in the Class_Initialize. BARF! |
|||
|
|
Class_Initializemethod). What it doesn't have is parameterized constructors. – Mehrdad Afshari Aug 1 '10 at 17:11