Thread automatisch radiobuttons erzeugen (24 answers)
Opened by perln00b at 2010-01-20 18:33

Gast perln00b
 2010-01-25 18:29
#131221 #131221
Hi,
ja ich meine fuer Name 1 soll Pfad1 und Pfad11 zurückgegben werden.

Mein Code sieht bisher so aus:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
my $Anzahl = `wc -l 2>/dev/null text.cfg | cut -b1`; ###wieviele  Pfade wurden definiert

for my $v( 2 .. $Anzahl ) {     ###erzeuge einen Rb fuer jeden Eintrag in der text.cfg
    
    $lokal= `cat text.cfg | head -$v | tail -1 |cut -b1-20`;
    chomp($lokal);
     
    my $rb = $tab3->Radiobutton( 
    -variable => \$var, 
    -text => $lokal, 
    -value => $v,
    -command=>\&getPfad);
    $rb->pack;
     push @radiobuttons, $rb     
}

sub getPfad
{
        $pfad_lokal= `cat text.cfg | head -$var| tail -1 | cut -b25-128`;
        $pfad2_lokal=  `cat text.cfg | head -$var| tail -1 | cut -b130-256`;
        chomp($pfad_lokal);
        chomp($pfad2_lokal);    
}



Last edited: 2010-01-25 19:01:44 +0100 (CET)

View full thread automatisch radiobuttons erzeugen