Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: How do I make Open and Save As file dialogs? (Win32)

by mdillon (Priest)
on May 30, 2000 at 20:34 UTC ( #15434=note: print w/replies, xml ) Need Help??


in reply to How do I make Open and Save As file dialogs? (Win32)

In the ActivePerl FAQ: Is there a way to do GUI programming with ActivePerl?

It refers to Win32::GUI, which seems to be the module's author's page; it also has a lot of useful info about other Win32 modules, as well as links to precompiled versions for the compiler impaired.

Below is some (untested) code based on a message from the Win32::GUI mailing list:

use Cwd; # returns selected file name; undef if Cancel sub file_open_dialog { my $file_spec = "*.bmp\0" . " " x 256; # init a C-friendly buffer my $dir = cwd; GUI::GetOpenFileName( -title => 'Load/Save File', -owner => $Win, -directory => $dir, -file => $file_spec, ) }

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2023-03-28 00:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (66 votes). Check out past polls.

    Notices?