On Sun, Apr 18, 2010 at 10:25 PM, kimmyaf <flahert...@hotmail.com> wrote:
> > I am experimenting with TKinter for the first time for my programming > course. > Trying to get a combobox working. At this point I'm not trying to write > elegant code, but at least get it to work for now. > > I keep getting the error below. Shouldnt It recognize the Combobox widget > from the import? > > "NameError: global name 'Combobox' is not defined" > > I'm sure there is something really obvious going on but I've been starting > at it forever and not finding it. I've been using this as reference. > > http://www.tkdocs.com/tutorial/widgets.html > http://www.tkdocs.com/tutorial/widgets.html > > I have the import line > from TKinter import * > > #Combo box > combovar = StringVar() > self.combo = Combobox(self.frame, textvariable=combovar) > self.combo['values'] = get_available_routes() > self.combo.var = combovar > self.combo.bind('<<ComboboxSelected>>', self.get_locations) > self.combo.grid(row=0, column=2) > > A google search for "Tkinter combobox" brings this as the first result: http://mail.python.org/pipermail/tutor/2004-July/030533.html Apparently the default installation of Tkinter doesn't contain a combobox, but it's accessible through some extensions/plugins HTH, Wayne
_______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss