MotionController * CreateFromServer ( char *  server,
long  serverPort 
) [static]

Description:
This creates and initializes a SyqnNet controller which resides in a TCP/IP networked computer. The networked computer must be running the SERVER.EXE utility.
Parameters:
server This is the remote computer's name or IP address. (Expressed as a char*)
serverPort This is the TCP port used to connect to the remote computer. Default is 3300. (Expressed as a long)
Sample Code:
Initialize a SynqNet controller in a networked computer running SERVER.EXE
  // -- C++ -- //
  MotionController *controller = MotionController::CreateFromServer("192.168.6.74", 3300);
  // -- C# -- //
  MotionController myController = MotionController.CreateFromBoard("192.168.6.74", 3300);
CreateFromBoard