in reply to Perl Tk text widget printing problem

I think your problem may be that Tk::Text's insert dosn't expect to have to dereference hashes. I would first try this:
# $txt->insert('end', "$worksheet->{Cells}[$row][$col]->{Val}"); my $string = $worksheet->{Cells}[$row][$col]->{Val}; $txt->insert('end', $string);

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh