Very much so. Thanks.Hope this helps somebody.
Search found 4 matches
- Fri May 10, 2013 3:47 pm
- Forum: The Code Dump
- Topic: wxModalWindow class - now a general modal window to use.
- Replies: 2
- Views: 5858
Re: wxModalWindow class - now a general modal window to use.
- Fri May 10, 2013 3:45 pm
- Forum: C++ Development
- Topic: making wxFrame Modal
- Replies: 4
- Views: 5009
Re: making wxFrame Modal
this->MakeModal(true); I found this->MakeModal(true) does not work with wxFrame; it doesn't create an event loop. I used Jason's modalwindow class in place of wxFrame. modalwindow->ShowModal() now works as expected. http://forums.wxwidgets.org/viewtopic.php?t=20752&highlight=frame+dialog#p89334 :D
- Tue Nov 13, 2012 11:38 pm
- Forum: Compiler / Linking / IDE Related
- Topic: Error compiling wxWidgets with cygwin/mingw64
- Replies: 1
- Views: 1398
Re: Error compiling wxWidgets with cygwin/mingw64
Change
to
I know this is an old thread, but since it is still searchable, someone else might find this helpful.
Code: Select all
--enable-extended_rtti
Code: Select all
--disable-extended_rtti
- Mon Jan 23, 2012 5:21 am
- Forum: C++ Development
- Topic: assert "m_count > 0" failed in DecRef() when using a grid
- Replies: 6
- Views: 4157
Re: assert "m_count > 0" failed in DecRef() when using a gri
Thanks. You saved me from lots of frustration.
Code: Select all
gridBin->SetColAttr(OPEN_GRID_DESC,left_grid->Clone());