Search found 59 matches

by mispunt
Wed Mar 19, 2008 11:51 am
Forum: The Code Dump
Topic: Cross platform embedding of resources
Replies: 11
Views: 10799

ItFinallyWorks wrote:Do you open your exe with wxFS?
Yes you do, simple as that :)
by mispunt
Thu Jan 24, 2008 3:13 pm
Forum: The Code Dump
Topic: Cross platform embedding of resources
Replies: 11
Views: 10799

I never did it this way... I always used the "cat" style. cat example.exe.tmp example.zip > example.exe The cat program is originally a unix program, but there is a windows version for it. btw. this only means you don't have to compile it within you're program, and don't have to recompile ...
by mispunt
Mon Jul 09, 2007 5:19 pm
Forum: Announcements and Discoveries
Topic: New wxWidgets book in Russian
Replies: 3
Views: 1370

could you add the language to the title?
by mispunt
Wed May 23, 2007 9:36 pm
Forum: Open Discussion
Topic: Hungarian Notation
Replies: 12
Views: 4431

- classes always start with an upper case letter and one uppercase break on word barriers e.g. Class, DataManager etc. - member variables start with m_ or _ followed by a lowercase, and an uppercase to break for a multiple word variable such as m_variableName - methods always start with an upper ca...
by mispunt
Wed May 23, 2007 2:21 pm
Forum: C++ Development
Topic: Using class templates
Replies: 10
Views: 2338

Have you tried to build wxWidgets using MSVC++ 2005 Express Edition ? If yes please tell me if you did some custom settings. I would like to know how to get rid of those link errors. It worked perfectly for my when I used the command line commands.. (wxWidgets 2.8.4) Edit: when using the command li...
by mispunt
Tue May 22, 2007 9:03 am
Forum: C++ Development
Topic: i18n and Unicode
Replies: 5
Views: 1470

swapd0 wrote:For unicode applications you must use _T() instead of _().
That is not true. _T() is to tell i18n to NOT translate, _() will translate.
by mispunt
Mon Dec 18, 2006 4:05 pm
Forum: C++ Development
Topic: How to get a list of directories?
Replies: 4
Views: 1616

Did you see the class wxDir?

When you put the content into a vector (within the while loop of the sample) you are done ;)
by mispunt
Tue Nov 14, 2006 6:23 pm
Forum: General Development
Topic: When wxWidgets will become a real C++ toolkit?
Replies: 14
Views: 4089

beside that, I think that your code is more readable when you don't need to use macro's for declaring an array.
by mispunt
Fri Oct 13, 2006 1:37 pm
Forum: Compiler / Linking / IDE Related
Topic: Linking errors with sample project (CodeBlocks)
Replies: 6
Views: 1699

The template provided by Code::Blocks does only support the MONOLITHIC build, in the nightly build it should be possible to use the none monolithic build. (for the nightly builds see the forum of C::B)
by mispunt
Sun Sep 24, 2006 9:39 am
Forum: Component Writing
Topic: How to embed graphics engine (eg., Irrlicht) into wx?
Replies: 11
Views: 5553

Did you change the driver type? The code of upCASE is using video::EDT_DIRECT3D9, but you should use the OPENGL thing (look in the documentation of Irrlicht...)
by mispunt
Mon Jan 09, 2006 3:53 pm
Forum: wxCode
Topic: Monolithic is a bloated beast.
Replies: 3
Views: 2270

When you need a dll to distribute it with youre application, the monolithic build is the best way IMO. as less as dll's as possible. But when do you need to distribute a dll? I am working on a project which uses plugins (the same idea as Code::Blocks does.) seperate plugins and an sdk. I think it is...
by mispunt
Tue Dec 27, 2005 3:01 pm
Forum: Open Discussion
Topic: My wxWidgets 3.0 changes wishlist
Replies: 29
Views: 8110

ABX wrote:Sorry if my redirecting-issues-job looked like flamewar. I will try to improve my not perfect english but choosing most suitable phrases and terms is not easy :(
I know that problem, really I do, but thanks for exlaining it a bit for me :)
by mispunt
Tue Dec 27, 2005 11:30 am
Forum: Open Discussion
Topic: My wxWidgets 3.0 changes wishlist
Replies: 29
Views: 8110

It is nice to have such sugestions IMO, and the code that snake is showing is just an example. It doesn't have to be used. What disapoints me is the slightly negative reaction of ABX. Well, perhaps I read it to negative, but I think you both (and of course the rest of the people) should better stop ...
by mispunt
Thu Dec 22, 2005 9:25 pm
Forum: Open Discussion
Topic: Why I don't like wxWidgets.
Replies: 51
Views: 23424

priyank_bolia wrote:Also I think that wxString is totally STL complaint, you can also jsut #define wxString to std::string, AFAIK.
Perhaps this works for wxString, but does this also works for wxArray, wxHashMap, etc.?
by mispunt
Thu Dec 22, 2005 3:26 pm
Forum: Open Discussion
Topic: Why I don't like wxWidgets.
Replies: 51
Views: 23424

Is it usefull to have a wrapper. or what ever, between STL and wxWidgets containers? So people can easily switch from wxString to std::string or something like that.. A is just a small step in the "right" direction, but "we" need to start somewhere ;) btw. where can I found infor...