mahis_431 has asked for the wisdom of the Perl Monks concerning the following question:
I have a dialogbox which popsup from main window. How do I create scrollbars in this dialogbox?.
Thankssub OnAbout { # Construct the DialogBox my $about = $mw->DialogBox( -title=>"About ", -buttons=>["OK"] ); $about->add('Label', -anchor => 'w', -justify => 'left', -text => qq( xxxxxx very long text xxxxxx) )->pack; $about->Show(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DialogBox and Scrollbars
by zentara (Cardinal) on Aug 18, 2011 at 13:01 UTC | |
|
Re: DialogBox and Scrollbars
by kcott (Archbishop) on Aug 19, 2011 at 07:11 UTC |