in reply to Just getopenfile/getsavefile for MS Windows?

I don't know much about it, but Prima may be worth a try. Here's an example from CPAN.
#!perl -w use strict; use warnings; use Prima qw(Application); use Prima::StdDlg; my $open = Prima::OpenDialog-> new( filter => [ ['Perl scripts' => '*.pl'], ['All' => '*'] ] ); print $open-> fileName, " is to be opened\n" if $open-> execute; # save a file my $save = Prima::SaveDialog-> new( fileName => $open-> fileName, ); print $save-> fileName, " is to be saved\n" if $save-> execute; # open several files $open-> multiSelect(1); print $open-> fileName, " are to be opened\n" if $open-> execute;

Replies are listed 'Best First'.
Re^2: Just getopenfile/getsavefile for MS Windows?
by RonW (Parson) on Oct 10, 2014 at 14:42 UTC

    This looks interesting, but really seems to another Tk/gtk/qt/etc

    Thanks (Sorry for late reply. I thought I had replied.)