Re: update or refresh a Listbox widget
it might be very slow when the data is big... -- http://mail.python.org/mailman/listinfo/python-list
Re: update or refresh a Listbox widget
Arne Meissner wrote: > Is there a function to update/refresh a listbox widget. > My one is connected to a database and after a change of the database I would > like the listbox to be updated. Tkinter? the quickest way is to do: w.delete(0, END) w.insert(0, *data) where w is the widget