in reply to Perl/Tk Positioning frame label on top edge of frame

Do you mean the LabFrame?

use Tk; use Tk::LabFrame; my $main = MainWindow->new(); $main->LabFrame( -label => 'fubar', -labelside => 'acrosstop' )->pack; MainLoop;

-- Django
"Why don't we ever challenge the spherical earth theory?"

Replies are listed 'Best First'.
Re^2: Perl/Tk Positioning frame label on top edge of frame
by weltyj (Novice) on Jun 08, 2004 at 20:09 UTC
    Most excellent. That works perfectly. Thanks!