Thread zugreifen auf dynamische entry usw. (5 answers)
Opened by Gast at 2007-02-13 21:28

PerlProfi
 2007-02-13 23:06
#46218 #46218
User since
2006-11-29
340 Artikel
BenutzerIn
[default_avatar]
Du musst einfach $i an deine Funktion übergeben.
Da gibt es 2 Wege.

1) Mit einem anonymen Array, das -command zugewiesen wird:
Code: (dl )
-command => [\&funktionsname, $i]


2) Mit einer anonymen Funktion, die -command zugewiesen wird:
Code: (dl )
-command => sub { funktionsname($i) }


MfG

View full thread zugreifen auf dynamische entry usw.