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

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

2005-04-19 Thread [EMAIL PROTECTED]
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 tiissa
Clara wrote: self.loginButton = Button(self, text='Login', command = VerifyProcessor(self.x.get(), self.y.get()) ) class VerifyProcessor: def __init__(self, thename, thepass): self.username = thename self.password = thepass def __cal

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

2005-04-19 Thread Martin Franklin
Clara wrote: 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

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