Re: [Tutor] using the enter key

2005-04-07 Thread Michael Lange
On Thu, 07 Apr 2005 10:06:46 +1000 "Nova Nova" <[EMAIL PROTECTED]> wrote: > def create_widgets(self): >self.a_lbl=Label(self,text="",fg="Red") >self.a_lbl.grid(row=0,column=0,columnspan=2,sticky=W) >self.inst_lbl=Label(self,text="Enter A Number

Re: [Tutor] using the enter key

2005-04-05 Thread Kent Johnson
, as Bernard has suggested, or do I need another piece of code that refers to the Enter key? Thanks. Diana - Original Message - From: "Kent Johnson" <[EMAIL PROTECTED]> Cc: Sent: Tuesday, April 05, 2005 7:20 AM Subject: Re: [Tutor] using the enter key Diana Hawksworth wrote:

Re: [Tutor] using the enter key

2005-04-05 Thread Michael Lange
On Tue, 5 Apr 2005 06:28:54 +1000 "Diana Hawksworth" <[EMAIL PROTECTED]> wrote: > Hello list! > > At the moment I have some user input tied to a button that allows the input > to be "submitted" and then an answer is supplied. How can I get rid of this > submit button, and have the user just pr

Re: [Tutor] using the enter key

2005-04-04 Thread Kent Johnson
Diana Hawksworth wrote: > At the moment I have some user input tied to a button that allows the input to be "submitted" and then an answer is supplied. How can I get rid of this submit button, and have the user just press the "enter" key and have the same result happen? How is the user interfac

[Tutor] using the enter key

2005-04-04 Thread Diana Hawksworth
Hello list!   At the moment I have some user input tied to a button that allows the input to be "submitted" and then an answer is supplied.  How can I get rid of this submit button, and have the user just press the "enter" key and have the same result happen?   TIA.  Diana ___