How do i display a variable of size LARGE_INTEGER in a listctrl.
What i'm doing at the moment is adding 32bit integers to the listctrl by using sprintf to store the int in a string which i then pass to the function CListCtrl::SetItemText.
This works fine but i cannot sprintf a LARGE_INTEGER to a string.. thus i can't display it (i don't know if there is another way)..
Would accessing the Low-part and the High-part seperately, and then converting each to strings and concatenating them work??
What i'm doing at the moment is adding 32bit integers to the listctrl by using sprintf to store the int in a string which i then pass to the function CListCtrl::SetItemText.
This works fine but i cannot sprintf a LARGE_INTEGER to a string.. thus i can't display it (i don't know if there is another way)..
Would accessing the Low-part and the High-part seperately, and then converting each to strings and concatenating them work??