From: Erick J. B. <er...@e-...> - 2001-01-11 21:25:42
|
I Can't even get the first call. > > my $filename = Win32::GUI::GetOpenFileName( > > -filter => [ > > "File type 1" => "*.ft1", > > "File type 2" => "*.ft2", > > ], > > ); > > I used the above code, but no results. The only way I can filter files is one file ending at a time, that is by placing a string (eg. "*.ft1") in the GetOpenFileName dialog. Like this, my $filename = Win32::GUI::GetOpenFileName( -file => "*.ft1" ); |