I feel I am close, but still dont know. Code: dialog:Connect(tTextBoxes.wxID_TXT_FILTER,wx.wxEVT_COMMAND_TEXT_UPDATED, function(event) --tTextBoxes["txt_filter"]:GetValue() for i = 0,tListBoxes["lst_reghubs"]:GetItemCount() - 1 do for idx = 0,tListBoxes["lst_reghubs"]:GetColumnCount() - 1 do local listItem = wx.wxListItem() listItem:SetId(i) listItem:SetMask(wx.wxLIST_MASK_TEXT) tListBoxes["lst_reghubs"]:GetColumn(idx, listItem) wx.wxMessageBox(listItem:GetText()) end end end) Now it writes the columnnames so many times the many elements are in the ListCtrl. What I want is the column values for each element. I've read through the manual many times, but I still don't understand. By the way, thanks for the fast reply.
------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ wxlua-users mailing list wxlua-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wxlua-users