7 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#!usr/bin/perl use strict; use warnings; use Tk; my $MW = MainWindow->new(); my $Button = $MW -> Button(-text=>"Open",-command=> \&open); $Button -> pack(); MainLoop; sub open{ exec('"C:/Programme/Internet Explorer/iexplore.exe"'); ####Oeffnet den IE und schließt das Button-Fenster }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#!usr/bin/perl use strict; use warnings; use Tk; my $MW = MainWindow->new(); my $Button = $MW -> Button(-text=>"Open",-command=> \&open); $Button -> pack(); MainLoop; sub open{ $MW->destroy(); &hauptprogramm; } sub hauptprogramm{ $MW = MainWindow->new(); my $Label = $MW -> Label(-text=>"Hier kann das Hauptprogramm eingefügt werden!"); $Label -> pack(); $MW -> focusForce(); ####Damit das Hauptprogramm den Fokus kriegt }
7 Einträge, 1 Seite |