The Instancing property controls how a class in a COM component created in
VB can be accessed by its clients. Two of the values available for this property are:
1) SingleUse
2) MultiUse
Books state that with the Instancing property set to SingleUse, for every object that a client creates, a new instance of the class is started. And if the Instancing property is set to MultiUse then all the objects are created from a single instance of the class.
I am confused with this explanation. What does it mean to create multiple objects from a single instance of a class and to start a new instance of the class for each object that's created. Please give me a simple explanation of what exactly does it mean.
ejan
ejan