LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

How to output an array to text box use special format(ASCII and HEX)??

 ArrayData[65535];

TextBox;

ASCII  

HEX

 

0 Kudos
Message 1 of 2
(2,860 Views)

You can use the Fmt(...) function for the hex part like this:

            Fmt(Buf, "%s<%65535x[j1],", ArrayData);

using an appropriately sized Buf.

0 Kudos
Message 2 of 2
(2,797 Views)