Re: wxEuphoria-list control
- Posted by ghaberek (admin) Jul 02, 2013
- 1746 views
buzzo said...
how can I recall the fields by line/column?
It would seem that we have set_list_item() but no get_list_item() equivalent. I can get this added to the repo soon.
Also, as an FYI, you can use insert_listctrl_item() to add row all at once.
sequence values = {"aaa", "bbb", "ccc", "ddd"} -- get the current number of rows integer count = list_count( myList ) -- insert our row after the last row integer row_id = insert_listctrl_item( myList, count, values, 0 )
-Greg