The value of the entry widget doesn't get updated

2005-04-19 Thread Clara
Hi, can somebody help me,..I have an assignment due next week but now I'm stuck with this problem I tried to get values from entry widget using the widgetcontrolvariable.get(),..but it seems that it won't work I can't print the value I input in the entry widget...However when I first set th

Thanks

2005-04-19 Thread Clara
Yes that solves my problem all right...THanks a bunch to both of you -- http://mail.python.org/mailman/listinfo/python-list

Re: The value of the entry widget doesn't get updated

2005-04-19 Thread Clara
Yes that solves my problem all right...THanks a bunch to both of you -- http://mail.python.org/mailman/listinfo/python-list

Entry Value won't get updated...Help please

2005-04-19 Thread Clara
I tried to print the value of my entry widget by passing the result of controlvariable.get() in Tkinter to a function. However, I kept printing empty string (eventhough I've written something inside the entry widget). But if I first set the value of the entry widget using .set,...I can get the val

opening new window in one window using Tkinter -- Help please

2005-04-24 Thread Clara
Hi,... I meant to write an application where there is a button in a window and when you click on the button, it will open a new window, but I want the first window to close, replaced by the second window. I open a login window and start the mainloop, when the user click on the login button, the __c

Re: opening new window in one window using Tkinter -- Help please

2005-04-24 Thread Clara
Well, but where do I call withdraw? -- http://mail.python.org/mailman/listinfo/python-list

Re: opening new window in one window using Tkinter -- Help please

2005-04-24 Thread Clara
Forgive my ignorance, but where do I call withdraw? -- http://mail.python.org/mailman/listinfo/python-list

Re: opening new window in one window using Tkinter -- Help please

2005-04-24 Thread Clara
since the file where i call the first window and the second window is different,.If I put app.master.withdraw() there,...won't I get error message that says; app is not defined as global or something like that? -- http://mail.python.org/mailman/listinfo/python-list

Re: opening new window in one window using Tkinter -- Help please

2005-04-24 Thread Clara
I've found the solution I must destroy the first window using self.master.destroy(), but thanks anyway ^_^ -- http://mail.python.org/mailman/listinfo/python-list

Re: Why doc call `__init__` as a method rather than function?

2023-09-15 Thread Clara Spealman via Python-list
All methods are functions, but not all functions are methods. All methods are functions in the namespace of a class and when resolved from the class directly, you'll get the original function. Its only when resolved from an *instance* of the class, as in self.__init__ or self.any_other_method(), th