04-29-2010 04:38 AM
I would like to convert int to string to display the result in a text box ?
Do you know how to do ?
04-29-2010 05:02 AM
#include <ansi_c.h>
int a_number;
char some_string [256];
a_number = 12345;
sprintf (some_string, "%d", a_number);
SetCtrlVal (panelHandle, PANEL_TEXTBOX, some_string);
JR