3 Einträge, 1 Seite |
1
2
3
$window->getSaveFile(-filetypes => \@types,
-initialfile => 'Untitled',
-defaultextension => '.htm');
$file = $window->getOpenFile(-filetypes => \@types);
1
2
3
4
5
my @types =
(["HTML Dokumente", [qw/.htm .html/]],
["Scripte", [qw/.cgi .php .php3 .pl .asp/]],
["Text Files", '.txt'],
["All Files", '*']);
3 Einträge, 1 Seite |