Thread Laden/Ausführen/Anzeigen Programm via GUI: Wie implementiere ich das in PERL/TK? (8 answers)
Opened by Gerry at 2004-08-22 14:40

ptk
 2004-08-23 14:20
#42534 #42534
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Du hast zwei Moeglichkeiten, das Problem zu umgehen. Entweder schreibst du
Code: (dl )
$protokoll->insert('end', join "", qx($^X $proggi))
oder
Code: (dl )
1
2
3
for (qx($^X $proggi)) {
$protokoll->insert('end', $_);
}


Der Grund ist, dass insert immer abwechselnd Text und Tags erwartet:
Code: (dl )
$textwidget->insert($position, $text1, $tags1, $text2, $tags2, ...)

View full thread Laden/Ausführen/Anzeigen Programm via GUI: Wie implementiere ich das in PERL/TK?