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 / _e9eb9ef2e62c7586320770ef1d785731 < prev    next >
Encoding:
Text File  |  2004-04-13  |  179 b   |  8 lines

  1. # DirTree, diplay directory tree.
  2.  
  3. use Tk;
  4. use Tk::DirTree;
  5. my $top = MainWindow->new;
  6. my $dl  = $top->Scrolled('DirTree')->pack(-expand => 1 , -fill => 'both');
  7. MainLoop;
  8.