Already on WndControl.h but still Get that error
Error Fixed :
From
Code:
protected:
CPtrArray m_listItemArray;
LPLISTITEM m_pFocusItem;
int m_nCurSelect ;
DWORD m_nWndColor ;
LISTITEM m_listItem ;
[COLOR=#ff0000] CWndScrollBar m_wndScrollBar;[/COLOR]
public:
DWORD m_nFontColor ;
DWORD m_nSelectColor;
TO:
Code:
protected:
CPtrArray m_listItemArray;
LPLISTITEM m_pFocusItem;
int m_nCurSelect ;
DWORD m_nWndColor ;
LISTITEM m_listItem ;
public:
[COLOR=#ff0000]CWndScrollBar m_wndScrollBar;[/COLOR]
DWORD m_nFontColor ;
DWORD m_nSelectColor;
Quote:
Originally Posted by Ecrypter
add this m_wndScrollBar in the WndControl.h so the error you've got will declaired.
try to read the error. where they need to declaired.
|
Btw this is my New Error,
Code:
\Official Source\_Common\ExchangeAdv.cpp(192): error C2039: 'GetItemCount' : is not a member of 'CItemContainer<T>' with
[
T=CItemElem
]