Search found 72 matches

by computerquip
Sat Apr 03, 2010 6:44 am
Forum: General Development
Topic: C++ Advantages
Replies: 8
Views: 3777

No! Why would I suggest something that did nothing but complicate. Namespaces aren't terribly complicated in concept anyways, plus they give a few minor advantages. One mainly being a distinct scope which gives the user a little bit more flexibility. For instance, he could use wx::Frame bob; or usin...
by computerquip
Thu Apr 01, 2010 4:34 pm
Forum: General Development
Topic: C++ Advantages
Replies: 8
Views: 3777

If someone were to go in and change everything to the wx namespace and submit a patch, would it be accepted?
by computerquip
Wed Mar 31, 2010 5:01 pm
Forum: General Development
Topic: C++ Advantages
Replies: 8
Views: 3777

C++ Advantages

Why doesn't wxWidgets use the wx namespace? Or give the ability to use C++ exceptions?
by computerquip
Thu Apr 02, 2009 12:05 pm
Forum: General Development
Topic: Interrupt/Exception
Replies: 2
Views: 1421

1. Don't use puts(). Use printf() or cout if your on C++. printf("Hello World!\n"); std::cout >> "Hello World!" >> std::endl; //Puts works but it has issues. 2. Really no point in having a void parameter. void hello() //Though using a void param should still be valid. 3. I can't ...
by computerquip
Fri Mar 20, 2009 12:07 pm
Forum: General Development
Topic: wxMenu looks bad
Replies: 6
Views: 10990

Re: wxMenu looks bad

Why does wxMenu look like something dragged out of Win95 when I use images? :) http://www.jacmoe.dk/assets/images/menuwrong.jpg I am tempted to use wxFlatMenu, but there must be some way to get a modern look. I mean: that's native on XP and Vista. Seems like it is using some ancient win95 code unde...
by computerquip
Fri Mar 20, 2009 12:05 pm
Forum: C++ Development
Topic: Regular Expressions
Replies: 1
Views: 826

Re: Regular Expressions

I am using following Regular expression to decode a response data. wxString s = "[-|*|>]([[])([[:digit:]]+):([[:digit:]]+)[]]([[:print:]]+)(\r)" In English locale it works well, But in German Locale it fails, due to some german characters which are not in English (ä ö ü ß) It is with the ...
by computerquip
Fri Mar 20, 2009 12:00 pm
Forum: C++ Development
Topic: Get Windows serial number
Replies: 6
Views: 2223

Re: Get Windows serial number

:P Two conflicting posts that say the opposite.
by computerquip
Fri Mar 20, 2009 11:59 am
Forum: C++ Development
Topic: memory leaks
Replies: 12
Views: 4500

Re: memory leaks

Sorry for awakening this zombi thread... (it is from 2006, jesus...) Yes, I can see the same with valgrind. I suppose it is some errors inside wx-mem-management. But, I am not sure, though. So, anyone who could clarify this strange thing any further? cu Stefan This was from three years ago. I'm sur...
by computerquip
Wed Mar 18, 2009 1:54 pm
Forum: General Development
Topic: Border Colors
Replies: 4
Views: 6042

Since no one has mentioned, I don't think this is a feature built into TextCtrl but I'm sure it can be done if you want to give it a shot :D
by computerquip
Mon Mar 16, 2009 1:37 pm
Forum: Compiler / Linking / IDE Related
Topic: ide with autocomplete for wxwidgets
Replies: 9
Views: 3394

ollydbg23 wrote:You can also try codeblocks. :D
I think the most common setup is Code::Blocks with GCC even on Windows.

And the accepted answer isn't for yourself! Especially when you don't answer your own question! lolol
by computerquip
Sun Mar 15, 2009 4:39 pm
Forum: General Development
Topic: how to change the Button text of wxWizard , not English
Replies: 3
Views: 1548

Create your own. Cancel is just a useful default that's recommended of use by wxWidgets. The defaults are simply common and usually mandatory buttons that are needed and used often but occasionally you need your special little button.
by computerquip
Fri Mar 13, 2009 1:40 pm
Forum: C++ Development
Topic: Select a grid cell for direct input
Replies: 3
Views: 1456

?????????????????????????????????????????????????????????
The wxGrid is similar to that in Excel. You simply click on it for focus, click again for input, and put your input in.
by computerquip
Thu Mar 12, 2009 1:31 pm
Forum: C++ Development
Topic: How to put a file inside a zip file
Replies: 7
Views: 3552

Please tell me your joking...
by computerquip
Wed Mar 11, 2009 10:49 pm
Forum: C++ Development
Topic: Where to add headers and how does program flow go?
Replies: 3
Views: 1495

I would definitely read a tutorial before you jump right into wxWidgets or ANY GUI library.

http://www.cplusplus.com/doc/tutorial/

http://www.cprogramming.com/tutorial.html