in reply to TK - dropbox with drive mappings

Okay thanks arden and eserte for you help. Here is the solution:
#!perl use Tk; use Tk::BrowseEntry; use Win32::DriveInfo; @drives = Win32::DriveInfo::DrivesInUse(); @drives = map ($_ . ":", @drives); @freelet = Win32::DriveInfo::FreeDriveLetters(); @freelet = map ($_ . ":", @freelet); $mw = new MainWindow; $d = $mw->BrowseEntry(-label => "Mapped Drives", -variable => \$var, -state => 'readonly', -choices => \@drives)->pack; $f = $mw->BrowseEntry(-label => "Free Drives", -variable => \$var1, -state => 'readonly', -choices => \@freelet)->pack; MainLoop;

Dean
The Funkster of Mirth
Programming these days takes more than a lone avenger with a compiler. - sam
RFC1149: A Standard for the Transmission of IP Datagrams on Avian Carriers