09-14-2007 05:11 PM
09-14-2007 07:12 PM
09-17-2007 05:38 PM
Thanks Mert A.,
I did not use a callback for the textbox. Why the function ResetTextBox() doesn't display the message, I have to call SeCtlrVal() after RestTextBox() to display the message.
09-17-2007 06:03 PM
07-21-2010 08:43 AM
Hello,
I know this topic is old but my problem is the same, so I put my message here...
My test code is very simple:
SetCtrlVal(panelHandle, PANEL_TEXTBOX_ETAT," working...");
.....
ResetTextBox(panelHandle, PANEL_TEXTBOX_ETAT," finish");
Delay(2);
ResetTextBox(panelHandle, PANEL_TEXTBOX_ETAT," ");
The problem is the text box doesn't show "finish" but directly nothing.
What is wrong?
For information, the text box has no callback function...
Please, someone can help me?
07-21-2010 08:56 AM
Hi,
while code is processed that does not call RunUserInterface or GetUserEvent, LabWindows/CVI does not update the user interface. You might want to try calling ProcessDrawEvents (); after your call to ResetTextBox...
07-21-2010 09:06 AM
Thank you Wolfgang for your quickly response!
Effectively with the ProcessDrawEvents function, it runs like I wanted...
I'm a novice, thank you!