07-05-2007 03:30 AM
07-05-2007 04:43 AM
Why do you want to perform such a conversion? If as an example you are reading with ReadLine, you can simply pass the string buffer to SetCtrlVal and display the text.
static char buffer[256];
static int fileHandle;
ReadLine (fileHandle, buffer, 255);
SetCtrlVal (panelHandle, PANEL_STRING, buffer);