Search found 6681 matches

by Auria
Sun Feb 18, 2007 9:57 pm
Forum: Compiler / Linking / IDE Related
Topic: Help with wxWidgets and visual studio 2005
Replies: 11
Views: 2724

how exactly do i configure the header search paths? In the properties for the specific app, or what? You will need to learn to use your IDE :) You should learn more about your tool http://www.wxwidgets.org/wiki/index.php/MSVC_Setup_Guide_For_Wx_2.5.4_And_Later there it says "Add include direct...
by Auria
Sun Feb 18, 2007 8:34 pm
Forum: C++ Development
Topic: wx terminate my program? core dump after calling SetMenuBar
Replies: 16
Views: 3396

that's that i what to phrase that's what i want to phrase? ;) Okay - i can't tell you exactly why this particular one fails, maybe someone else can help you. But... out the 15 configurations, not a single one suits your need? After all, you don't absolutely need a debug version since you're not goi...
by Auria
Sun Feb 18, 2007 8:01 pm
Forum: Platform Related Issues
Topic: Submenus in pop-up menus don't fire events in wxGTK
Replies: 6
Views: 1878

Thanks it works!! I just found it more logical to catch menu events in a menu rather than in a frame... well seems like i was wrong. The thing that confuses me now, is why did it work on mac in the first place if it's not good code?? Ahh, multi-platform programming ;) thanks, one more step towards h...
by Auria
Sun Feb 18, 2007 7:32 pm
Forum: C++ Development
Topic: wx terminate my program? core dump after calling SetMenuBar
Replies: 16
Views: 3396

I just tried it with the menu sample. There are 16 configurations regarding to this project, so i completed rebuild all of them. 15 configurations are build fine, but in the Debug configuration (not in the unicode debug) there are the same error i get in my non-unicode project: Lining... wxmsw28d_c...
by Auria
Sun Feb 18, 2007 7:28 pm
Forum: Compiler / Linking / IDE Related
Topic: Help with wxWidgets and visual studio 2005
Replies: 11
Views: 2724

nevolved wrote:cannot find wx/wx.h ......
You need to configure header search paths
by Auria
Sun Feb 18, 2007 3:40 pm
Forum: Platform Related Issues
Topic: Submenus in pop-up menus don't fire events in wxGTK
Replies: 6
Views: 1878

Hi, wxGTK submenus work OK for me. Two suggestions: wxMenu::Append has the comment: "Append the submenu to the parent menu after you have added your menu items, or accelerators may not be registered properly." This might be a similar issue. Maybe there's an ID clash. Try using an ID of 10...
by Auria
Sun Feb 18, 2007 2:52 pm
Forum: C++ Development
Topic: wx terminate my program? core dump after calling SetMenuBar
Replies: 16
Views: 3396

Okay, it runs fine with my ANSI static non-debug wxMac libs. So it's either something with wxMSW or something in your configuration. This is just a guess, but Unicode is often responsible for configuration problems. Can you try ANSI just to verify? Also, several wxWidgets samples use menus. Can you ...
by Auria
Sun Feb 18, 2007 1:55 am
Forum: Platform Related Issues
Topic: Submenus in pop-up menus don't fire events in wxGTK
Replies: 6
Views: 1878

Submenus in pop-up menus don't fire events in wxGTK

Hi, i'm still porting my wxMac app to wxGTK and i'm hitting a weird bug. It seems like sub-menus inside pop-up menus don't fire events :? i tried EVT_MENU_RANGE, EVT_MENU, etc. the method is never called even if i do select the menu item. it is a wxMenu-derived class i had submenus like this: wxMenu...
by Auria
Sat Feb 17, 2007 11:36 pm
Forum: C++ Development
Topic: wx terminate my program? core dump after calling SetMenuBar
Replies: 16
Views: 3396

For the unresolved symbol, you likely forgot to link against some lib.

As for the original bug... can you post source code? (a minimal working sample is often very helpful because we can try it)
by Auria
Sat Feb 17, 2007 7:07 pm
Forum: C++ Development
Topic: Collecting wxTextCtrl values crashes program
Replies: 4
Views: 723

can you post more code?

and are you sure the pointer to 'wxTextCtrlName' is okay?
by Auria
Sat Feb 17, 2007 3:38 pm
Forum: Compiler / Linking / IDE Related
Topic: Newbie: code::blocks and precompiled headers
Replies: 4
Views: 1472

Hi, just changing a define value in a header is usually not enough to enable something. It has to be enabled when building wxWidgets. i am not sure how you built wxWidgets, and i don't use windows so i can't help you precisely, but on mac and linux i would need to pass an --with-odbc flag to ../conf...
by Auria
Thu Feb 15, 2007 9:50 pm
Forum: C++ Development
Topic: wx terminate my program? core dump after calling SetMenuBar
Replies: 16
Views: 3396

fluxy wrote:I know how to use the debugger, i am sure. I think I not know that a backtrace is, because I am German. Maybe I only could not translate this word.
Google is your friend ;)
http://www.linux.com/howtos/Caudium-HOW ... race.shtml
by Auria
Thu Feb 15, 2007 9:19 pm
Forum: Compiler / Linking / IDE Related
Topic: Complete Newb: Where is wxAUI ??
Replies: 14
Views: 1795

It's not likely that you don't have gtk+-2.0 installed. It should come installed by default on your system. I think your actual problem is that you're using the '--with-gtk' configure option. I think either that's looking for GTK-1.0, or it's now thinking you wanted to specify a different installat...
by Auria
Thu Feb 15, 2007 9:09 pm
Forum: Platform Related Issues
Topic: wxFRAME_SHAPED and sizers broken on mac
Replies: 5
Views: 1505

What do you mean by "Classic Only"? Ok you're not used to mac OS X are you? ;) The latest version of mac OS is Mac OS X. Before that there used to be Mac OS 9, etc. Mac OS X is now the standard on mac for years - however your makefile built a mac OS 9 app. Not even a 'carbon' self-contain...
by Auria
Thu Feb 15, 2007 9:06 pm
Forum: C++ Development
Topic: wxHtmlWindow scrolling problem
Replies: 12
Views: 2548

What's your platform? wxWidgets version?
And could you provide some code (a minimal compilable sample is always the best)

It actually may just be the way that the wxHtml component behaves - however i don't see why scrolling should change when frame is resized