it might be very slow when the data is big...
--
http://mail.python.org/mailman/listinfo/python-list
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
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