05-11-2005 04:19 AM
05-11-2005 05:37 AM
05-11-2005 08:38 AM
07-06-2006 08:28 AM
07-06-2006 09:53 AM
07-06-2006 10:01 AM
07-06-2006 10:17 AM
So if you already have a program that is sending a command message over a TCP/IP link, then you need to do a couple of things. First the program that is sending needs to know where to send it, what IP address and what port number. Second, you need something at the other end to receive that message. That program needs to listen at the same port, decode the message to determine if it is the right one and then launch your program.
I believe there is an example of how to implement a TCP/IP server and client in the example code that ships with CVI. That should be a good place to start with creating the server to listen for the message.