I usually use controls to make a ListCtrl object....it works fine, but I want to successfully make one from "scratch". This is what I have so far...but I'm not getting a ListCtrl in my dialog....I'm getting nothing. Can someone please tell me what's wrong with this?
CListCtrl *MatrixList;
MatrixList->Create(LVS_REPORT, CRect(10, 10, 100, 100), this->FromHandle(m_hWnd), 1);
I figgured that this would initialize and object and then attach it to my dialog box. But I'm doing something wrong. Thanks in advance for any help.
Niky Williams
NTS Marketing
CListCtrl *MatrixList;
MatrixList->Create(LVS_REPORT, CRect(10, 10, 100, 100), this->FromHandle(m_hWnd), 1);
I figgured that this would initialize and object and then attach it to my dialog box. But I'm doing something wrong. Thanks in advance for any help.
Niky Williams
NTS Marketing