LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

numeric to string

Solved!
Go to solution

Your array has 16 elements and you have it scrolled to start with element 9 in the first line. This means that all matches are higher than the dimension of the string array.

 

  • Set the index terminal of the array control to 0.
  • right-click the index terminal or array border and select "data operation...empty array"
  • count 8 elements and set the last one to zero. This makes the array size=8.
  • RIght-click the array and select "data operation...make current values default" This ensures that it will be size=8 next time you load the VI from disk.
  • Save the VI.

 

Remember, the array index terminal determines which element is in the upper left corner of the array display. The size of the visible elements has nothing to do with the actual array size.

 

Somehow, your string array has 9 elements (one hidden), the last one being an empty string. This does not really hurt, but if you want to delete this last elements, right-click it and select "data operation...delete element".

Message 11 of 12
(334 Views)

program worked perfectly

 

thanks alot

 

Harold Timmis

GE Transportation

Harold Timmis
htimmis@fit.edu
Orlando,Fl
*Kudos always welcome:)
0 Kudos
Message 12 of 12
(315 Views)