Hallo leute
Seit ich Perl 5.8.7 benuzte habe, funktioniert mein Programm nicht mehr:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
my $UsedModules_f = $Expert_wd -> Frame(-relief => 'groove', -borderwidth => '2') -> pack (-side => 'left', -anchor => 'nw');
my $UsedModulesInfo_l = $UsedModules_f -> Label(-text => "Flow File:",-background => '#f0f2a1') -> pack (-fill => 'x');
$UsedModules_pane = $UsedModules_f -> Scrolled("Pane", -scrollbars => 'oe', -width => '250', -height => '405')->pack();
#my $UsedModules_lb = $UsedModules_pane -> Listbox(-width => '20', -height => '25')->pack();
$table = $UsedModules_pane->TableMatrix(-height => '1',
-width => '2',
-autoclear => '1',
-cols => '2',
-rows => '1',
-maxheight => '3000',
#-bordercursor => 'arrow',
) -> pack (-side => 'top', -anchor => 'n');
$table->colWidth(0,5,1,40);
Fehler ist
352884c is not a hash at C:/Perl/site/lib/Tk/Widget.pm line 190.
wie kannt ihr mir helfen?
Danke im voraus
klc