I have a listview, and an old CreateWindow style dialog, using a WNDPROC etc etc.
The listview displays:
Event Number Day of week Date/time Username Computername
That data is parsed out of a string called g_sClipText and appended to the listview.
What would be the best way to sort this data by whichever title the user clicks on, and how do you do that with a Listview?
I have all of the functions, it may be one of the one's in there...
Here is a sample of the data that goes in the listview. I am separating these with a "|" sybol so each element is more clear:
1 Friday | June 29, 2001 8:04 AM | turchinsp | TNG2K
2 Thursday | June 28, 2001 6:00 AM | turchinsp | TNG2K
------------------
Scott
The listview displays:
Event Number Day of week Date/time Username Computername
That data is parsed out of a string called g_sClipText and appended to the listview.
What would be the best way to sort this data by whichever title the user clicks on, and how do you do that with a Listview?
I have all of the functions, it may be one of the one's in there...
Here is a sample of the data that goes in the listview. I am separating these with a "|" sybol so each element is more clear:
1 Friday | June 29, 2001 8:04 AM | turchinsp | TNG2K
2 Thursday | June 28, 2001 6:00 AM | turchinsp | TNG2K
------------------
Scott
Comment