Hallo Daniel
Yes, the server always comes up on the local machine without any error conditions. The IP Address an other DCOM Settings seems to be correct, because with an VBA Example it works.
Here is my CVI Code:
----
const IID iidMData = {0x8A72AC83,0x1D21,0x11D5,0x8F,0x8C,0x0,0x50,0x4,0xA,0x48,0x62};
CA_InitActiveXThreadStyleForCurrentThread (0, COINIT_APARTMENTTHREADED);
error = CA_CreateObjectByProgIdEx("VLWDCom.LaserChromatron", "192.168.1.19", &iidMData, 1, LOCALE_NEUTRAL, 0, &xmLaser);
---
and thats the working VBA Code
---
Sub Laser()
Dim xLaser As LaserTemplateLib.CoLaserTemplate
Set xLaser = CreateObject("VLWDCom.LaserChromatron", "192.168.1.19")
xLaser.Reset
End Sub
---
I,ve got no idea whats going wrong.
Thanks
in advance
Oliver