Hi I am trying to change an individual item in a listCtrl in erlang.
I initialize listCtrl then I goto set the item as follows:
wxListCtrl:setItem(ListCtrl, Row, 1, io_lib:format("~.2f",[VolumeB + 0.00 ])),
wxListCtrl:setItemBackgroundColour(ListCtrl, 1, ?wxRED),
Problem is the background color of the entire row is red, I only want one column in one row to change, not the entire row.
This is a tough one, at least for me, I haven't seen any simple straight forward docs.