is the class and the interface the same thing in vb?
Printable View
is the class and the interface the same thing in vb?
No. Each class has a distinct GUID assigned to it - it is called a CLSID. For a given class there is only on CLSID.
Each interface has a GUID assigned as a distinct IID (interface ID).
One class can have dozens of IID's associated with it - some already defined like IUnknown and others the you create via the Implements verb.