Just a minor nit-pick -- the day-of-week stuff could be handled a little more easily:
...
#Create Labels and headings
my @wkdays = qw/M T W R F Sa Su/;
my %labelColumns;
my $i = 0;
foreach ( qw/On Program Browse/, @wkdays ) {
$labelColumns{$_} = $i++;
$mid_frame -> Label( -text => "$_", -relief => "sunken", -padx =>
+5 )
-> grid( -column => $labelColumns{$_}, -row => 0, -padx => 0 )
+;
}
...
# Time Checkbuttons
for my $dy ( @wkdays ) {
$mid_frame -> Checkbutton( -variable => \$files[$index][$label
+Columns{$dy}])
->grid( -row=>$_, -column=>$labelColumns{$dy}, -padx => 0,
+ -pady => 5 );
}
...
If/when you decide to change an option or something for those mid_frame Checkbuttons, you'll appreciate having only one line of code to change, instead of 7.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.