
Activex Server - Early Binding vs. Late Binding
I have a simple activex server that I wrote that works fine from the client
when using:
dim remote as object
set remote = CreateObject("MyRemoteProject.MyRemoteObject", "ServerName")
But when I try to use early binding like this:
Dim remote As New MyRemoteObject
and then make a call to it I get:
Run-time error '-2147221163 (80040155)':
Automation error
Interface not registered
Any thoughts?
Thanks,
RWK