Karger78 has asked for the wisdom of the Perl Monks concerning the following question:
$main->AddTextfield( -name=> "LocalCpPath", -width =>100, -height =>20, -pos => [95,55], -disabled=>1, ); $main->AddButton( -name=> "btnLocalCpPath", -text=> "...", -width =>30, -height =>20, -pos => [210,55], -disabled=>1, ); $main->AddCheckbox( -name => "cpLogsLocal", -text => "Copy Logs Local", -pos => [210, 5], -size => [100, 21], ); sub cpLogsLocal_Click{ $main->AddTextfield(-LocalCpPath->disabled(0)); ##the about doesn't work, just playing }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32:GUI check box to enable and disable features
by SuicideJunkie (Vicar) on Sep 01, 2009 at 14:05 UTC | |
by Karger78 (Beadle) on Sep 01, 2009 at 14:12 UTC | |
by Karger78 (Beadle) on Sep 01, 2009 at 14:28 UTC | |
by BrowserUk (Patriarch) on Sep 01, 2009 at 14:48 UTC |