10-26-2007 08:31 AM
10-26-2007 08:48 AM
10-26-2007 08:50 AM - edited 10-26-2007 08:50 AM
Message Edited by GerdW on 10-26-2007 03:51 PM
10-26-2007 08:58 AM
10-26-2007 09:05 AM - edited 10-26-2007 09:05 AM
Message Edited by andre.buurman@carya on 10-26-2007 04:08 PM
10-29-2007 07:02 AM
Hi russeldav
Just to sum up some of the comments:
1) Initialize the array to accomodate for the max number of users.Avoid deleting or adding elements to the array dynamically as it will continuously reallocate memory
space for the new array which will take up time and memory resources.
2) Don't use global variable as you may run into race conditions problems, e.g. you may want to write to the array the same time someone else it trying to read from that.
3) Use the TCP broadcast function to broadcast your data over the network.
Thanks,
KostasB
Applications Engineer NI UK
10-30-2007 03:54 PM - edited 10-30-2007 03:54 PM
Message Edited by russelldav on 10-30-2007 04:15 PM
10-31-2007 04:49 AM