Please disregard from the previous posting. The answer I recieved on how to fetch a string from a cell was indeed correct and after reading the docs again I realized howto insert a text widget instead of the default Label. See code below:

sub writeTable {
$text = $table->get(1,1);
$string = "hoppla";
$text->insert(0.1,$string);
$table->put(1,1,$text);
}

sub saveTable {
$text = $table->get($i,$j);
$line = $text->get(0.1,end);
print $line;
}

_________________________________________________________________
MSN Foto: Det enklaste sättet att dela fotoalbum http://photos.msn.se/

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to