请问这个error是怎么导致的呀?
DlgItems.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: virtual __thiscall CListCtrlEx::~CListCtrlEx(void)" (__imp_??1CListCtrlEx@@UAE@XZ)

解决方案 »

  1.   

    unresolved external symbol "symbol"Code references something (such as a function, variable, or label) that the linker can't find in the libraries and object files.Possible causes What the code asks for doesn't exist (the symbol is spelled incorrectly or uses the wrong case, for example). 
    The code asks for the wrong thing (you are using mixed versions of the libraries, some from one version of the product, others from another version).