Reputation: 2385
I need to get something like this:
But I've been stuck looking for a solution for 2 hours now.
Upvotes: 0
Views: 944
Reputation: 3636
The lines are just an additional style to set:
DWORD dwStyle = m_list.GetExtendedStyle();
dwStyle |= LVS_EX_GRIDLINES;
m_list.SetExtendedStyle(dwStyle);
Upvotes: 4