ListCtrl insert a list of items?

Does ListCtrl have a member function that append a list of items, instead of writing a loop everytime I add a list to the ListCtrl.

ListBox can append a list of items using the AppendItems() function.

Statement Of Confidentiality:

This electronic message transmission, and all attachments, contains information from Extron Electronics which is confidential and privileged. The information is for the exclusive viewing or use of the intended recipient. If you are not the intended recipient, be aware that any disclosure, copying, distribution or use of the contents of this information is prohibited. If you have received this electronic transmission in error, please notify the sender immediately by a “reply to sender only” message and destroy all electronic and hard copies of the communication, including attachments.

Qui Le wrote:

Does ListCtrl have a member function that append a list of items, instead of writing a loop everytime I add a list to the ListCtrl.
ListBox can append a list of items using the AppendItems() function.

Not currently. We do have an added Append method that will add a row to the listctrl. You pass it a sequence that has one string/unicode for each column. I'll add an AppendItems that uses a loop that calls Append.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!