Hallo all,
I have a doubt regarding object instantiation.
dim ob as new MyObj
here, there is no instance is created until first method or property is called. then wht should ob represent?
dim ob as myobj
set ob = new myobj
here, the instance is created. then i would like to know whether ob contain reference to the standard IUNknown?
in the case of late binding, using CreateObject, whether the var conatin reference to IDispath?
I would like to know the complete steps during instantiation
Sijukumar
I have a doubt regarding object instantiation.
dim ob as new MyObj
here, there is no instance is created until first method or property is called. then wht should ob represent?
dim ob as myobj
set ob = new myobj
here, the instance is created. then i would like to know whether ob contain reference to the standard IUNknown?
in the case of late binding, using CreateObject, whether the var conatin reference to IDispath?
I would like to know the complete steps during instantiation
Sijukumar