in reply to Perl Tk, how to get File Browser, capture output to a Log file and format my checkboxes
G'day perlynewby,
Some general pointers:
For your "Formatting challenges" questions, I suspect your main problem here is the exclusive use of the Tk::pack geometry manager. Laying out the frames of your GUI with pack() is often a good way to go. When lining up widgets within those frames, Tk::grid is possibly a better choice. See the "Tk Geometry Management" section for other options.
For your other questions, it wasn't clear whether you were asking how to do something or how to position a widget (e.g. "on right side below checkboxes"). I've provided tentative answers based on "how to do" and not "how to position".
Some final notes:
my $mw = MainWindow->new(); ... our $mw = MainWindow->new;
— Ken
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Tk, how to get File Browser, capture output to a Log file and format my checkboxes
by perlynewby (Scribe) on Mar 22, 2022 at 16:44 UTC | |
by choroba (Cardinal) on Mar 22, 2022 at 17:49 UTC | |
by hippo (Archbishop) on Mar 22, 2022 at 17:12 UTC |