Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Just getopenfile/getsavefile for MS Windows?

by hominid (Priest)
on Oct 08, 2014 at 20:45 UTC ( [id://1103221]=note: print w/replies, xml ) Need Help??


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.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1103221]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (2)
As of 2024-04-26 06:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found