When it crashes, what is written to the debug output window?
Are you compiling wxWidgets with the __WXDEBUG__ flag?
Search found 657 matches
- Thu Jun 25, 2009 5:03 am
- Forum: Platform Related Issues
- Topic: Unknown Application Crash Under MS Windows
- Replies: 3
- Views: 917
- Thu Jun 25, 2009 5:00 am
- Forum: C++ Development
- Topic: A question about wxListCtrl and wxLC_VRULES....please help.
- Replies: 3
- Views: 749
- Thu Jun 18, 2009 12:15 am
- Forum: wxDev-C++
- Topic: wxDialog keyboard issues
- Replies: 2
- Views: 850
Do you have a question? All of the "issues" you referenced worked fine for me. What version of wxWidgets are you using? Do you have any sample code to support your issues? Is it a single window app or single dialog, meaning you have one dialog in your multi-window app? Its best if a single window ap...
- Tue Jun 16, 2009 3:01 am
- Forum: C++ Development
- Topic: wxFileDialog SetDirectory and SetFilename Seem to be ignored
- Replies: 30
- Views: 4710
One of my concerns is that wxWidgets does not itself use a name space, which is to my mind a sign of immaturity. C++ namespaces have been around for more than 10 years now. Namespaces are used to denote scope, to provide logical organization. All wxWidget entities are prefixed with "wx". By that vi...
- Mon Jun 15, 2009 2:54 am
- Forum: C++ Development
- Topic: exFileDialog wildcard doesn't work on initial entry
- Replies: 3
- Views: 938
try it without the semi-colon.
Code: Select all
"GEDCOM files (*.ged)|*.ged|GEDCOM files (*.GED)|*.GED"
- Mon Jun 15, 2009 2:42 am
- Forum: C++ Development
- Topic: wxFileDialog SetDirectory and SetFilename Seem to be ignored
- Replies: 30
- Views: 4710
wxFD_FILE_MUST_EXIST + wxFD_CHANGE_DIR) I'm not sure I have ever seen the "+" operator used for flags, usually "|" operator is used. Works fine for me, you may want to check the return value set by your getenv call. wxT(std::getenv("HOME")), // try this wxString(std::getenv("HOME")), Even more so, ...
- Mon Jun 15, 2009 2:33 am
- Forum: Database Related
- Topic: wxSQLite3, how to build SQLite without dll?
- Replies: 16
- Views: 11992
- Sat Jun 13, 2009 8:06 pm
- Forum: Database Related
- Topic: wxSQLite3, how to build SQLite without dll?
- Replies: 16
- Views: 11992
- Sat Jun 13, 2009 4:26 pm
- Forum: Database Related
- Topic: wxSQLite3, how to build SQLite without dll?
- Replies: 16
- Views: 11992
- Fri Jun 12, 2009 5:16 am
- Forum: C++ Development
- Topic: wxGetApp() not working
- Replies: 30
- Views: 5200
- Fri Jun 12, 2009 5:13 am
- Forum: General Development
- Topic: XRC - Yeah or Nay?
- Replies: 3
- Views: 1185
I've been using XRC files since I found out about them (+3 years ago). Its been a great idea ever since. Any time you can use a MVC paradigm, it probably is a good move. There are several advantages to decoupling code from UI. I'm not a teacher, so you can look it up. But yes I use XRCed to build GU...
- Fri Jun 12, 2009 5:09 am
- Forum: Compiler / Linking / IDE Related
- Topic: Code Completion with Xcode 3.0
- Replies: 6
- Views: 1188
You may have to build your proj first. I have the latest Xcode as well, and all my wxProj code complete as desired. If it doesn't work then, recheck your preferences. If it doesn't seem to work after that, then best of luck fixing it. Thanks. I'll play with it later. Just out of curosity, I had a w...
- Thu Jun 11, 2009 4:42 am
- Forum: Compiler / Linking / IDE Related
- Topic: Code Completion with Xcode 3.0
- Replies: 6
- Views: 1188
- Sun Jun 07, 2009 6:38 am
- Forum: C++ Development
- Topic: Serializing wxStrings
- Replies: 4
- Views: 1070
wxWidgets does provide plenty of other options to store strings.
wx data storage IO classes
Check out: http://docs.wxwidgets.org/stable/wx_classesbycat.html (Stream Classes)
Also, I recommend you use: http://docs.wxwidgets.org/stable/wx_wxa ... ml#wxarray instead of the STL vector
regards.
wx data storage IO classes
Check out: http://docs.wxwidgets.org/stable/wx_classesbycat.html (Stream Classes)
Also, I recommend you use: http://docs.wxwidgets.org/stable/wx_wxa ... ml#wxarray instead of the STL vector
regards.
- Thu Jun 04, 2009 12:00 am
- Forum: wxDev-C++
- Topic: How to put text in the Debug Output pane?
- Replies: 6
- Views: 1420