Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

using specific server

Status
Not open for further replies.

nadskram

Programmer
May 21, 2001
41
US
i remember doing this when i worked for someone else, and now i forget

i want to say, create this object using someother server, like one that has com objects or my email server
 
I'm not sure what you want, but if it's instantiating objects on machine other than yours use CoCreateInstanceEx or CoGetClassObject.
Greetings,
Rick
 
i am actually doing this in asp

we used something like this in vb, and i thought it had something to do with com

set myObj = someOtherServer.creatObject("object.thing")

something like that, but i cant remember
 
It has everything to do with COM.
However, CreateObject should not be prefixed with the server, that's included in the argument of CreateObject.
Greetings,
Rick
 
thats right

you say server,createobject("object.thig" [ , specific server ] )

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top