in reply to Tk on the fly

I am not quite sure what it is you are expecting. But assuming that all you want to to show the hash keys and values in a Tk Entry box, then all you need is (untested)
foreach(keys(%myhash)){ $entry->insert('end', "Key=$_, Value=$myhash{$_}\n"); }

Replies are listed 'Best First'.
Re: Re: Tk on the fly
by Scarborough (Hermit) on May 12, 2004 at 08:13 UTC
    Thanks, I have used something similar to handle the display of the data from the hash and it works just fine. My main concern was the need to reference the entry boxes by name after some data has been changed in them. After a good nights sleep I think I can use the orginal hash for this.