kranthi has asked for the wisdom of the Perl Monks concerning the following question:
use Tk; use Tk::MDI; $mw = tkinit; $mdi = $mw->MDI( -style=>'win32', -background=>'white'); $child2 = $mdi->add(-titletext=>'Listbox Title'); $child2->geometry("275x250+100+10"); $lb = $child2->Listbox->pack; $lb->insert(0,"A Listbox"); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Query TK::MDI Interface
by Khen1950fx (Canon) on Aug 22, 2008 at 07:14 UTC | |
by kranthi (Sexton) on Aug 22, 2008 at 10:01 UTC |