Re: [Tutor] Listbox help

2005-08-31 Thread Kent Johnson
David Holland wrote: > I can work out how to use most Tkinter widgets. Eg > buttons like :- >def create_widgets(self): > #create GUI >Button(self, text = "x", command = > self.y).grid(row = 3, column = 3, columnspan = 3) > > However I am not sure how to use Listboxes. What >

[Tutor] Listbox help

2005-08-31 Thread David Holland
I can work out how to use most Tkinter widgets. Eg buttons like :- def create_widgets(self): #create GUI Button(self, text = "x", command = self.y).grid(row = 3, column = 3, columnspan = 3) However I am not sure how to use Listboxes. What would be the similar syntax to create