How to configure a DCOM on the client side!
Hi,
I am trying to use objects from a dll located on another computer than the one my client app is running.
I am using CreateOBject:
Set MyObj as Object
set MyObj =CreateObject("MYserverDLL.MyCLass.1","MYServer")
The error message that I'm getting is that I don't have the licence info to use this obj at design time.
I 've read on MSDN site that I need to configure the Client to be able to use the DCOM object:
"<<Note Refer to COM documentation (see Microsoft Developer Network) for additional information on making an application visible on a remote networked computer. You may have to add a registry key for your application.
>>"
Can anyone tell me what do I need to add to my registry?
What should I do to be able to instanciate the remote object??
Thanks a lot!
:confused: