gxConnectNetworkDevice (string IP)

Connects a programmer at a given IP address over the network.

Parameters:

IP - IP address of the programmer on the local network, f.i. "192.168.1.11"

Example:

try {
gxConnectNetworkDevice("192.168.1.11");
print("Connection Success!");
}
catch(string s)
{
print(message("Connection failed: %msg%") << s);
}
catch(...)
{
print("Connection Failed!");
}

See also:

gxImportProject, gxStartAction

► latest version online