Re: How to find an object existing?

2018-06-13 Thread Terry Reedy
On 6/14/2018 1:20 AM, Christian Gollwitzer wrote: Am 14.06.18 um 05:14 schrieb huey.y.ji...@gmail.com: root = Tkinter.Tk() button = Tkinter.Button(root, text="Find me") button.pack() I created a button, Python object. I recall I can check this object existing by using   winfo, such as  winfo.e

Re: How to find an object existing?

2018-06-13 Thread Christian Gollwitzer
Am 14.06.18 um 05:14 schrieb huey.y.ji...@gmail.com: root = Tkinter.Tk() button = Tkinter.Button(root, text="Find me") button.pack() I created a button, Python object. I recall I can check this object existing by using winfo, such as winfo.exists(button). However, I forgot which super class c

Re: How to find an object existing?

2018-06-13 Thread dieter
huey.y.ji...@gmail.com writes: > root = Tkinter.Tk() > button = Tkinter.Button(root, text="Find me") > button.pack() > > I created a button, Python object. I recall I can check this object existing > by using winfo, such as winfo.exists(button). However, I forgot which > super class contains t

How to find an object existing?

2018-06-13 Thread huey . y . jiang
Hi All, root = Tkinter.Tk() button = Tkinter.Button(root, text="Find me") button.pack() I created a button, Python object. I recall I can check this object existing by using winfo, such as winfo.exists(button). However, I forgot which super class contains this winfo method. I printed ou