OK. I have used CreateObject many times in COM+ programming.
But...I now have a standard EXE that has some classes inside it, no external DLL.
How do I use CreateObject to create a class??
VB Code:
  1. Dim objWoof As MyClass
  2.    Set objWoof = CreateObject("MyClass")
Doesn't work...ActiveX EXE cannot create object error...

What am I doing wrong?

Woof