dll=a.cpp
dll资源对话框=b.cpp
b.cpp里
CListBox* pList = (CListBox*)GetDlgItem(IDC_LIST_SAY);
pList->AddString("1");
没问题。在a.cpp里
CListBox* pList = (CListBox*)GetDlgItem(DlghWnd,IDC_LIST_SAY);
pList->AddString("1");
就不行,为什么?