|
-
Jun 13th, 2002, 03:25 PM
#1
Thread Starter
PowerPoster
CreateObject
Is the only way to access a DLL or AXEXE that is on a remote computer through CreateObject?
How can you set a refrence to a DLL that is on a remote computer on a network?
-We have enough youth. How about a fountain of "Smart"?
-If you can read this, thank a teacher....and since it's in English, thank a soldier.

-
Jun 14th, 2002, 02:25 PM
#2
Hyperactive Member
This is called DCOM - Distributed COM. I believe you simply pass the target UNC of the machine when creating the object:
Code:
Set Obj = CreateObject("library.class", "//server/")
or something similar. However, DCOM is a *large* subject, and I suggest you do some heavy reading before implementing it..
-
Jun 15th, 2002, 12:39 AM
#3
Thread Starter
PowerPoster
Umm i know how to use createobject.... you obviously misunderstood my question..
-We have enough youth. How about a fountain of "Smart"?
-If you can read this, thank a teacher....and since it's in English, thank a soldier.

-
Jun 16th, 2002, 03:48 PM
#4
Hyperactive Member
Perhaps your signature got in the way of my actually reading your question....
You can't reference a DLL on a remote machine. You use DCOM is you want to create objects remotely.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|