[perl-win32-gui-users] (no subject)

2001-09-26 Thread EvanK40767
I've got 2 questions... In a listview control, is there a way I can select *all* of the items in the control? Along those same lines, could i also select *none* of the items? And one more thing...can i enable/disable specific items in a Win32::GUI::Menu object (and if so, how)? -

RE: [perl-win32-gui-users] Selecting multiple files

2001-09-26 Thread Frazier, Joe Jr
Tested: use Win32::FileOp; my @filenames = Win32::FileOp::OpenDialog( title => 'Test', filters => [ 'Word Documents' => '*.rtf;*.doc', 'All' => '*.*'], defaultfilter => 1, dir => 'c:\\', filename => ' ', handle => 0, options => OFN_ALLOWMULTISELECT | O