I'm attempting to use Win32::GUI along with the GetOpenFileName API call to open multiple files via this GUI interface. I'm able to select one file with the following Perl code, but I can't figure out how to modify this code so that I can select multiple files at one time. Thanks for any assistance offered:
#!perl use Win32::GUI; my $file = "*.txt\0" . " " x 256; my $file = GUI::GetOpenFileName( -owner => $W, -directory => "C:\\", -title => "Create ASN File - Specify Output File", -file => $file, ); print $file __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com