For whatever reason, I cant get the framework to call DrawItem. I have set the style bits as follows:


BOOL CTransactionView::PreCreateWindow(CREATESTRUCT& cs)
{

//cs.style &= ~LVS_TYPEMASK;
//cs.style &= ~LVS_SHOWSELALWAYS;
//cs.style |= LVS_REPORT | LVS_OWNERDRAWFIXED;
//cs.style |= LVS_EDITLABELS;

return CListView::PreCreateWindow(cs);
}




What am I doing wrong?

Scott