Cannot run wxrcedit

This forum can be used to talk about general design strategies, new ideas and questions in general related to wxWidgets. If you feel your questions doesn't fit anywhere, put it here.
Post Reply
LaoWei
In need of some credit
In need of some credit
Posts: 3
Joined: Wed Jan 12, 2005 8:48 am

Cannot run wxrcedit

Post by LaoWei »

I downloaded the wxWidgets source code from CVS.
I can compile the source code. But I cannot run wxrcedit .
The first error: "Cannot load resources from file'C:\Temp\wxr495.tmp'
After I clicked OK button, the 2nd message is: "Unhandled exception in
exrcedit.exe: 0xC0000005: Access Voilation." The VC will stop at line 351
of file "wxWidgets\src\common\in wincmn.cpp". The function is:

Code: Select all

bool wxWindowBase::Close(bool force)
{
    wxCloseEvent event(wxEVT_CLOSE_WINDOW, m_windowId);
    event.SetEventObject(this);
    event.SetCanVeto(!force);

    // return false if window wasn't closed because the application vetoed the
    // close event
    return GetEventHandler()->ProcessEvent(event) && !event.GetVeto();  //<<<< Stop Here
}
The call stack:
WinMain -> wxEntry -> wxCleanupOnExit -> exEntryCleanup ->
wxApp::CleanUp -> wxAppBase::CleanUp ->
EditorFrame::~EditorFrame -> wxWindowBase::Close
Post Reply