G
GiuPa
Guest
i have one mfc program written on c++
an when i run the old exe compile on time ago with vs2015 all go ok
but now when i recompile it they give me this error when i try to customize toolbar or menu ?
the error are: comctl32.dll at 0x5EBC8728 access violation when writing the path 0x00EEE378
some idea ? or if it's a bug?
Thanks
Edited Upgrade:
stops the debug on the wincore.cpp file
within this routines
/////////////////////////////////////////////////////////////////////////////
// Default CWnd implementation
LRESULT CWnd:efWindowProc(UINT nMsg, WPARAM wParam, LPARAM lParam)
{
if (m_pfnSuper != NULL)
return ::CallWindowProc(m_pfnSuper, m_hWnd, nMsg, wParam, lParam);
WNDPROC pfnWndProc;
if ((pfnWndProc = *GetSuperWndProcAddr()) == NULL)
return :efWindowProc(m_hWnd, nMsg, wParam, lParam);
else
return ::CallWindowProc(pfnWndProc, m_hWnd, nMsg, wParam, lParam);
}
Thanks
Continue reading...
an when i run the old exe compile on time ago with vs2015 all go ok
but now when i recompile it they give me this error when i try to customize toolbar or menu ?
the error are: comctl32.dll at 0x5EBC8728 access violation when writing the path 0x00EEE378
some idea ? or if it's a bug?
Thanks
Edited Upgrade:
stops the debug on the wincore.cpp file
within this routines
/////////////////////////////////////////////////////////////////////////////
// Default CWnd implementation
LRESULT CWnd:efWindowProc(UINT nMsg, WPARAM wParam, LPARAM lParam)
{
if (m_pfnSuper != NULL)
return ::CallWindowProc(m_pfnSuper, m_hWnd, nMsg, wParam, lParam);
WNDPROC pfnWndProc;
if ((pfnWndProc = *GetSuperWndProcAddr()) == NULL)
return :efWindowProc(m_hWnd, nMsg, wParam, lParam);
else
return ::CallWindowProc(pfnWndProc, m_hWnd, nMsg, wParam, lParam);
}
Thanks
Continue reading...