10-11-2007, 06:24 AM
Quote:if it was possible to send str Array via net command as an argument
No, it must be single string.
Sending single element at a time will probably be too slow. You can somehow pack all array elements into single string, send it, then in the other computer unpack the string to array. It is especially easy if elements don't contain multiline strings. Then just assign array to str variable (s=a) , and on other computer str variable to array (a=s).
