Re: wxListCtrl
- Posted by EUWX Aug 22, 2012
- 1367 views
buzzo said...
Using wxEuphoria and the wxListCtrl
edit_row = get_selection(relLV) listData = get_list_string(relLV,edit_row[1])
listData does not contain all columns (4 cols) data... only column 1
writing to the rows/cols is ok.. but reading back is a problem..
how can I get the remaining cols ??
You are using List Control, not wxListCtrl
If you are trying to get 4 columns of data perhaps using wxGrid might be better instead of a list.
I think List is intended to contain several items in one column, whereas wxGrid will allow you to work with whole rows or individual items in a row.