?
Okay, ich habs gelöst. Das create hat gefehlt.
for (int i = 0; i < 1; i++)
{
cLst[i] = new CListCtrl();
// cLst[i]->Create(WS_CHILD|WS_VISIBLE|LVS_REPORT, CRect(i*10,i*10,400+i*10,200+i*10), this, i);
cLst[i]->Create(WS_CHILD|WS_MINIMIZE|LVS_REPORT, CRect(-1,-1,-1,-1), this, i);
cLst[i]->InsertColumn(0, "Datum" ,LVCFMT_LEFT, 90);
cLst[i]->InsertColumn(1, "Eröffnung" ,LVCFMT_LEFT, 90);
cLst[i]->InsertColumn(2, "Hoch" ,LVCFMT_LEFT, 90);
cLst[i]->InsertColumn(3, "Tief" ,LVCFMT_LEFT, 90);
cLst[i]->InsertColumn(4, "Schluß" ,LVCFMT_LEFT, 90);
cLst[i]->InsertColumn(5, "Volumen" ,LVCFMT_LEFT, 90);
cLst[i]->InsertColumn(6, "Adj. Schluß*" ,LVCFMT_LEFT, 90);
}