odin
April 22nd, 1999, 07:36 PM
Hello,
When I create my listview ctrl I do:
m_list.Create(dwStyle, rect, pParentWnd, nID);
The problem is I want to use extended windows styles as WS_EX_CLIENTEDGE, then I guess I need to create it with CreateEx?
How the heck do I do this?
I've tried m_list.CreateEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, NULL, dwStyle, rect, phwndParent, NULL);
But this just creates a assert failure when trying to insert a new column/items etc
help!!!!
-- ODIN/HENRIK
When I create my listview ctrl I do:
m_list.Create(dwStyle, rect, pParentWnd, nID);
The problem is I want to use extended windows styles as WS_EX_CLIENTEDGE, then I guess I need to create it with CreateEx?
How the heck do I do this?
I've tried m_list.CreateEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, NULL, dwStyle, rect, phwndParent, NULL);
But this just creates a assert failure when trying to insert a new column/items etc
help!!!!
-- ODIN/HENRIK