How can I obtain the GUID (class identifier) from a dll using visual basic code?
Here is how I instantiate the dll class:
Dim comSched As Object
Set comSched = CreateObject("NOVAR2BCM.Novar")
I have a visual c++ COM object (Novar2BCM.dll) which contains the NOVAR2BCM.Novar class.
Thanks for any help.
