in reply to Changing Buttonsize in MListbox
... $mw->minsize(700,400); ... my $c1 = $scrolledMListbox->columnInsert('end', -text => 'Path'); $c1->configure(-width => 25); my $c2 = $scrolledMListbox->columnInsert('end', -text => 'Modified'); $c2->configure(-width => 25); my $c3 = $scrolledMListbox->columnInsert('end', -text => 'Dir'); $c3->configure(-width => 25); my $c4 = $scrolledMListbox->columnInsert('end', -text => 'File'); $c4->configure(-width => 25);
I am not certain whether you were thinking to modify the actual module just as an example or what, but normally you want to stay OUT of module code until you have exhausted other possibilities. Have you tried not hacking the module?
Celebrate Intellectual Diversity
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Changing Buttonsize in MListbox
by Ace128 (Hermit) on Sep 15, 2005 at 23:01 UTC |