LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

releted to string control evaluation

 
 
Hi ,
In a string control I am inserting characters one by one by key board  now can I evaluate the complete string i.e the array of characters starting from first to last .If yes how can I do so ,plz reply ?
 
regards
subrata
0 Kudos
Message 1 of 2
(3,084 Views)

Hello Subrata,

What exactly do you mean? You can always get the entire string by using the GetCtrlVal on the string control:

char string[100];

GetCtrlVal (pnlHandle, PNL_STRING, string);

// evaluate the string.

 

 

Message 2 of 2
(3,080 Views)