in reply to Re: Re: How to access options to Tk widgets
in thread How to access options to Tk widgets
Is there a reason you have
$self->Label(-text=>"var= $optnum")->pack();
instead of
$self->Label(-text=>$optnum)->pack();
If you're actually trying to make your text label $optnum, I believe that you need -text=>$optnum.
Hope that helps!
p.s.
If you find something to debug Tk, let me know would you? I had a HELL of a time debugging my Tk stuff beyond the print a line type of debugging.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: How to access options to Tk widgets
by Rich36 (Chaplain) on May 10, 2002 at 14:16 UTC | |
by Popcorn Dave (Abbot) on May 10, 2002 at 19:27 UTC | |
| A reply falls below the community's threshold of quality. You may see it by logging in. |