in reply to TK positioning of elements

Hi,

you can use Tk::LabEntry ( ahh - no pod ) like so:

my $entryDailyLogs = $mainWindow -> LabEntry( -textvariable => \$config{'numberOfDailyLogsToCopy'}, -width => 2, -label => 'Enter the number of daily log files t +o copy', -labelPack => [-side => 'right'], ) -> pack( ); my $entryAuditLogs = $mainWindow -> LabEntry( -textvariable =>\$config{'numberOfAuditLogsToCopy'}, -width => 2, -label => 'Enter the number of audit log files t +o copy', -labelPack => [-side => 'right'], ) -> pack( );

Cheers, Christoph