Thanks for your fresh pair of eyes!
--
https://mail.python.org/mailman/listinfo/python-list
TUA wrote:
> Why does the button frame in the code below not show?
> tk.Button(bf, padx = 10, relief = tk.GROOVE, text = 'Help')
You forgot to layout it with .pack().
> I intend to have it displayed in between the notebook at the top and the
> fake statusbar at the bottom.
I think for
On Monday, 25 January 2016 00:51:34 UTC-8, Peter Otten wrote:
> KP wrote:
>
> > See my code below (which works).
>
> >From the import of lowercase "tkinter" I conclude you are using Python 3.
>
> > I'd like to have the 2nd window as a
> > class in a separate unit. How do I code that unit and h
On Monday, 25 January 2016 08:22:12 UTC-8, KP wrote:
> On Monday, 25 January 2016 00:51:34 UTC-8, Peter Otten wrote:
> > KP wrote:
> >
> > > See my code below (which works).
> >
> > >From the import of lowercase "tkinter" I conclude you are using Python 3.
> >
> > > I'd like to have the 2nd w
On Sunday, 24 January 2016 20:20:07 UTC-8, KP wrote:
> See my code below (which works). I'd like to have the 2nd window as a class
> in a separate unit. How do I code that unit and how do I call it from my
> first unit?
>
> As always, thanks for all help!
>
>
>
>
> #!/usr/bin/env python
> "
KP wrote:
> See my code below (which works).
>From the import of lowercase "tkinter" I conclude you are using Python 3.
> I'd like to have the 2nd window as a
> class in a separate unit. How do I code that unit and how do I call it
> from my first unit?
>
> As always, thanks for all help!
Mov
Hi Mark,
Thank you so much for the help. I figured it was something pretty
simple like that. And I was also puzzled by the concept of the lambda
function, so now I know what they do too. I just tried it out, and it
works well.
Much appreciated,
Ciao back at you,
Robbie
--
http://mail.python.or
On Thu, 06 Dec 2007 23:04:56 -0800, robbie wrote:
> This second example doesn't work. The only difference is that I gave
> the salutation function a parameter and tried to pass a string as the
> parameter from the button. It appears to call the function once for
> each window as they're being cre