in reply to Re: MListbox - please help
in thread MListbox - please help

On my Perl 5.10, and latest Tk, you need to click on the 'size' header to actually get it to fill in the $mw after it opens. A hack to get around it, is to set a very high width for that column, and let it fill in from the right side.

There may be a better way. :-)

$mlb->columnInsert(2, -text=>'size', -width=>1000 )->pack(-expand => + 1);

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku

Replies are listed 'Best First'.
Re^3: MListbox - please help
by Khen1950fx (Canon) on Feb 13, 2010 at 22:15 UTC
    Thanks for the tip. Extends the size header perfectly.