Start point of a classlib Proj
-
Pls i want to know where is the start point in a class lib project. what i mean is how do acchieve class initilalize here like is in vb6 thanks and best regards.
-
Pls i want to know where is the start point in a class lib project. what i mean is how do acchieve class initilalize here like is in vb6 thanks and best regards.
There is no "start point" in a class lib project - it cannot run on it's own. A class lib is a set of classes that can be used by a variety of other applications, they are not executable directly. Instead, the various class constructors do the init when they are first executed. If you need a start point, then create it as a Winforms project or similar instead.
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.