in reply to Re: Tk::pack help
in thread Tk::pack help

The problem with the nested frames is that the widgets won't necessarily be aligned in the other direction. Hence, the grid manager.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Replies are listed 'Best First'.
Re^3: Tk::pack help
by davidj (Priest) on Aug 03, 2004 at 19:42 UTC
    You are correct about that. However, before I was turned on to the grid and form geometry managers, I was able (with some difficulty and complexity) to get fairly decent grid layouts using pack. By all means, it is not the way to go and grid/form are the best options.

    davidj