> According to the docs on CPAN, there's a -multiple option, 
> but I can't get it to work.
> 
> Let us know if you have any joy.

I've never got that to work.  There's a way to do it with Win32::FileOp,
though...

@file = Win32::FileOp::OpenDialog(                  
    -title => "Select File(s) to process",
    -filters => ['Special Files' => $spec,
                 'All Files' => '*.*'],
    -defaultfilter => 1,
    -filename => $spec,
    -options => OFN_ALLOWMULTISELECT,
);
                                         

-- 
[EMAIL PROTECTED]
perl -se "s((.))(printf q(%c),(10,32,65,67,
69,72,(74..76),(78..80),(82..85))[hex $&]
)eg" -- -_=06fde129ae54c1b4c8152374c00 

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to