Perl Gtk2::FileChooserDialog

Thank you, but I don't understand ho to use it.
Step by step I go to the following line:
Code:
my $file_chooser =  Gtk2::FileChooserDialog->new (
                             $heading,
                             $window,
                             $type,
                         );
After it debugger does not response on any commands.
 
Ok, then the problem is most likely in the Gtk2::FileChooserDialog module. How did you install that?
 
Are you sure it does nothing? As far as I understood it Gtk2::FileChooserDialog can take a long time to present itself.
 
He he, I waited for about 40 minutes (I went to dinner) and nothing appeared.

Could you please check this example on your PC?
 
Code:
man perldebtut
man perldebug
perl -d ~your/script.pl
A minimum of time spent learning its use can yield much IMO. Just step right in ..
 
Program freezes on string
Code:
my $file_chooser =  Gtk2::FileChooserDialog->new (
                             $heading,
                             $window,
                             $type,
                         );
This command does not return prompt. What can I do?
Please check does p5-Gtk2-1.221_3 work right on your PC. Maybe package is wrong.
 
Back
Top