02-08-2007 05:32 AM
02-08-2007 05:56 AM
You can change the text programmatically in a Text Message control by using code along the following lines:
char line [256] = "Some new string data";
...
SetCtrlVal (panel_handle, PANEL_TEXT, line);
If you need the operator to edit the text directly, rather than generate new text within your program, it might be better to use a String control.
JR