可以使用,CreateObject这个函数,
可以本地使用,差不多,只是多了一个参数,
dim obj as object
Set obj =  CreateObject("你的对象的名称","192.168...")

解决方案 »

  1.   

    Creating an object on a remote server can only be accomplished when Internet security is turned off. You can create an object on a remote networked computer by passing the name of the computer to the servername argument of CreateObject. That name is the same as the machine name portion of a sharename. For a network share named "\\myserver\public", the servername is "myserver". In addition, you can specify servername using DNS format or an IP address.The following code returns the version number of an instance of Excel running on a remote network computer named "myserver":Function GetVersion
       Dim XLApp
       Set XLApp = CreateObject("Excel.Application", "MyServer")
       GetVersion = XLApp.Version
    End Function
    An error occurs if the specified remote server does not exist or cannot be found.