Re: update or refresh a Listbox widget

2006-04-03 Thread Recoruds
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

2006-04-02 Thread Fredrik Lundh
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

update or refresh a Listbox widget

2006-04-02 Thread Arne Meissner
Hello! 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. Thank you for your help! Arne -- http://mail.python.org/mailman/listinfo/python-list