home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _84180addf3c5d1ad8a7e48be88813652 < prev    next >
Encoding:
Text File  |  2004-04-13  |  316 b   |  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.