hennesse has asked for the wisdom of the Perl Monks concerning the following question:
Hi all,
I'm having trouble updating a textfield. I thought this would work.
my $cwLogLevelData = $configWin->AddTextfield( -name => "cwLogLevelData", -pos => [100, 100], -width => 80, -height => 20, -background => [255,255,255], -tabstop => 1, ); $cwLogLevelData->Append("One"); $cwLogLevelData->Clear(); $cwLogLevelData->Append("Two");
I get "OneTwo". Clear() doesn't seem to do anything, or I'm using it wrong. Any ideas?
Thanks - Dave
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32:GUI ::Textfield Clear()
by Anonymous Monk on Nov 21, 2011 at 15:29 UTC | |
by hennesse (Beadle) on Nov 21, 2011 at 16:09 UTC | |
|
Re: Win32:GUI ::Textfield Clear()
by petecm99 (Pilgrim) on Nov 21, 2011 at 19:01 UTC | |
by hennesse (Beadle) on Nov 23, 2011 at 04:15 UTC | |
by petecm99 (Pilgrim) on Dec 19, 2011 at 20:23 UTC |