wxEuphoria-list control

new topic     » topic index » view thread      » older message » newer message

Need some help. Have a wxListCtrl, with 4 columns; text in header for each column Use the following code to put text in the columns

 
	box_text = get_text_value(field1)			 
	x=insert_listctrl_item (relLV,0,box_text,0)	-- puts text in col 0; the line is x 
	box_text = get_text_value(field2) 
	set_list_item(relLV,x,1, box_text,0 )		-- puts text in line x, col 1 
	box_text = get_text_value(field3) 
	set_list_item(relLV,x,2, box_text,0 )		-- puts text in line x, col 2 
	box_text = get_text_value(field4) 
	set_list_item(relLV,x,3, box_text,0 )		-- puts text in line x, col 3 

however, have been unable to recall the fields.. right click on a line will return the line number using

x = get_selection(relLV) 

how can I recall the fields by line/column?

new topic     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu