Harobed wrote:

Hello,

I would like append value to combo.list

This code don't work :

combo=gtk.Combo()
combo.list.append("foo") <-- error here


Try something like:

combo.list.append_items([gtk.ListItem("foo")])

John

_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to