The Instancing property controls how a COM component created in
VB can be accessed by its clients. Two of the properties available for this property are:
1) SingleUse
2) MultiUse
Books state that with the Instancing property set to SingleUse, for every object that's created as a result of a client request, a new instance of the class is started. And if the Instancing property is set to MultiUse 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 class instance 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