in reply to Re: How to pass the value of a variable from a child to parent with gui interface?
in thread How to pass the value of a variable from a child to parent with gui interface?
BrowserUK, thanks for pointing out that Win32::GUI::Dialog() is actually a loop!
I tried the following and it seems to almost get what I was expecting:
while(1){ $display->Show(); $display->SelectAll(); $display->Clear(); $display->Update(); $display->Append($text); $display->Update(); sleep(10); } Win32::GUI::Dialog();
The problem is: the cursor is always busy because of Win32::GUI::Dialog(); loop.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to pass the value of a variable from a child to parent with gui interface?
by BrowserUk (Patriarch) on Mar 13, 2010 at 05:21 UTC | |
by ZJ.Mike.2009 (Scribe) on Mar 13, 2010 at 05:28 UTC | |
by BrowserUk (Patriarch) on Mar 13, 2010 at 05:39 UTC | |
by ZJ.Mike.2009 (Scribe) on Mar 13, 2010 at 05:56 UTC |