fast has asked for the wisdom of the Perl Monks concerning the following question:
thanks in advance.use strict; use warnings; use Tk; use Tk::MListbox; my $mw = MainWindow->new(); $mw->geometry("900x500"); my $frame = $mw->Frame()->pack(-side=>'top', -fill=>'both', -expand=>1 +); my $mlb = $frame->MListbox()->pack(-side=>'top', -fill=>'both', -expan +d=>1); $mlb->columnInsert(0, -text=>'count'); $mlb->columnInsert(1, -text=>'date'); $mlb->columnInsert(2, -text=>'size'); Tk::MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: MListbox - please help
by Khen1950fx (Canon) on Feb 13, 2010 at 04:09 UTC | |
by zentara (Cardinal) on Feb 13, 2010 at 12:58 UTC | |
by Khen1950fx (Canon) on Feb 13, 2010 at 22:15 UTC |