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
Yes that solves my problem all right...THanks a bunch to both of you
--
http://mail.python.org/mailman/listinfo/python-list
Yes that solves my problem all right...THanks a bunch to both of you
--
http://mail.python.org/mailman/listinfo/python-list
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
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
Well, but where do I call withdraw?
--
http://mail.python.org/mailman/listinfo/python-list
Forgive my ignorance, but where do I call withdraw?
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
10 matches
Mail list logo