Thanks for the reply,
http://home.satx.rr.com/srgray/
At this site is the file, TcpServerNI.vi. In it, I'm trying to build an
array of Tcp Connection IDs and then do something with those elements in
the array. My problem is that I don't know how to initialize that array
on startup to "no elements" or empty. The way I usually do this for
other data types is shown by the Example Array in the VI. (I just right
click on the array and do Create Constant which gives me an empty array
constant.) However, when I try that with the array of Connection IDs,
Create Constant is grayed out.
Any help is appreciated,
Stephen
mikeporter wrote:
> Although it's hard to say exactly where you are going wrong without
> seeing your code, here's something to check:
>
> One o
f the most common ways of running into trouble is to have an
> array in a shift register that you append values to as a loop runs. If
> you don't initialize the left node of the shift register with a null
> array outside the loop, you will append more and more values each time
> the VI runs.
>
> If that isn't your problem, post your code and I'll be glad to check
> it out...
>
> Mike...