Re: [Tutor] Python glade

2010-06-18 Thread Lang Hurst
Found the problem. If you want to do this, you have to access the gtkEntry like this self.builder.get_object('student_change').set_completion(completion) instead of self.student_change.set_completion(completion) Lang Hurst wrote: OK, I created a UI in glade which has the followin

[Tutor] Python glade

2010-06-18 Thread Lang Hurst
OK, I created a UI in glade which has the following: True True ● 25 basically, a text box. I'm trying to set it up to automatically complete names as I type. My py fil