用listbox = new CListBox;
listbox->CreateEx(WS_EX_CLIENTEDGE,"ListBox",NULL,LBS_STANDARD|WS_VISIBLE|WS_CHILD,CRect  (10,50,180,300),this,ID_LIST);
//建立CListBox对象报错:
C:\Users\Administrator\Desktop\vcgame\game\gameFrame.cpp(124) : error C2065: 'listbox' : undeclared identifierC:\Users\Administrator\Desktop\vcgame\game\gameFrame.cpp(124) : error C2440: '=' : cannot convert from 'class CListBox *' to 'int'
        This conversion requires a reinterpret_cast, a C-style cast or function-style castC:\Users\Administrator\Desktop\vcgame\game\gameFrame.cpp(125) : error C2227: left of '->CreateEx' must point to class/struct/unionC:\Users\Administrator\Desktop\vcgame\game\gameFrame.cpp(125) : error C2065: 'ID_LIST' : undeclared identifier我该肿么办。。