我的問題是:'的CObject :: CObject的':不能訪問類中聲明私有成員 'CObject的'
Error 1 error C2248: 'CObject::CObject' : cannot access private member declared in class 'CObject' c:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin.h 1991 1 ProcessInfo
而且我的代碼:
boost::thread timerThread(&CMainFunctions::TimerFunction, this, pid, TIMER_INTERVAL_MS, lstBox);
lstBox
是MFC列表框,我的TimerFunction是:
void CMainFunctions::TimerFunction(int pid, int interval, CListBox &lstbox)
我需要做什麼,編輯我的MFC窗體或r ather在線程中編輯我的表單中的ListBox?
您是否嘗試過將列表框例如'的boost :: REF(lstBox)'? – 2013-04-30 08:11:11
這對我有幫助。非常感謝) – EXTRAM 2013-04-30 08:15:49