home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _6d5d4305f16aaf27f97ff28ee416f15f < prev    next >
Text File  |  2004-06-01  |  316b  |  14 lines

  1. # LabFrame, frame with embedded label.
  2.  
  3. use Tk;
  4. use Tk::LabFrame;
  5. use Tk::LabEntry;
  6.  
  7. my $test = 'Test this';
  8.  
  9. my $top = MainWindow->new;
  10. my $f = $top->LabFrame(-label => "This is a label", -labelside => "acrosstop");
  11. $f->LabEntry(-label => "Testing", -textvariable => \$test)->pack;
  12. $f->pack;
  13. MainLoop;
  14.