Iam facing problem in listview .Problem is while giving breakpoint I can see values are getting updated but when i am seeing LISTVIEW in my application ,its not getting updated.
Code:
Code Below iam giving breakpoints latitude & longitude values are changing but when i run my application in Listview latitude & longitude are not changing. I try to give invalidate() as well as update but it did not worked it out
CString strLstItem;
CListCtrl &objLstCtrl = GetListCtrl();
strLstItem.Format("%f", latitude);
objLstCtrl.SetItemText(nItem, 1, strLstItem);
strLstItem.Format("%f", longitude);
objLstCtrl.SetItemText(nItem, 2, strLstItem);

