Search found 3759 matches

by Jorg
Sat Feb 20, 2010 1:08 pm
Forum: Platform Related Issues
Topic: Cross Compiled arm nas snake-os
Replies: 3
Views: 1954

Just to get things straight, are you sure wxWidgets runs on an ARM processor? If you use GUI (not sure), are you sure it can link against a port of GTK or something else to make your GUI show?

With regards,
- Jorgen
by Jorg
Wed Feb 17, 2010 7:09 pm
Forum: Announcements and Discoveries
Topic: Succeeding in the PC Game and Online Games Industry
Replies: 6
Views: 4906

Hmm.. I would have thought this is SPAM as well. Anyway I'll leave it for Jorg to decide. (Dang! You're too fast for me ) Hehe I just had my coffee what do you expect ;-) Well like I said, it is a developer event, maybe not really wxWidgets related, but also not something that I would consider to b...
by Jorg
Wed Feb 17, 2010 7:49 am
Forum: Announcements and Discoveries
Topic: Succeeding in the PC Game and Online Games Industry
Replies: 6
Views: 4906

I agree, it is development related and not really directed to a product, although NVIDIA is mentioned a lot, I do not think they rely on this kind of advertisement to get their video cards sold ;-) I did however move it to Announcements and Discoveries, as it is not about a wxWidgets related develop...
by Jorg
Thu Feb 11, 2010 2:59 pm
Forum: General Forum Issues
Topic: Allow google and other robots to index this forum?
Replies: 4
Views: 12787

I have not a clue. I would think that google will keep some kind of retention in it's cache, but it is also plausible to assume that when a site does not want to get indexed, that google will flush it from cache. As example, if a book site does not want google to find the books and add a meta tag no...
by Jorg
Thu Feb 11, 2010 7:50 am
Forum: Announcements and Discoveries
Topic: The Cafu Engine is now open source
Replies: 1
Views: 2825

Hi,

Thanks for sharing this. It looks very professional and very good!

With regards,
- Jorgen
by Jorg
Wed Feb 10, 2010 8:23 am
Forum: General Development
Topic: What IDE do you use?
Replies: 21
Views: 10813

Code::Blocks I like because of the x-platform IDE. If there would be a better port for wxDev-Cpp I would like to give that a try. I strongly believe that there should be one "native" IDE for wxWidgets that is fully supported on all platforms wxWidgets supports and moves as fast with implem...
by Jorg
Fri Feb 05, 2010 8:12 am
Forum: The Code Dump
Topic: wxXmlConfig
Replies: 3
Views: 5277

I did a quick scan and it looks like good clean code. I would donate it to the wxWidgets developers too, to serve as back end for one of the wxConfigBase implementations.

With regards,
- Jorgen
by Jorg
Thu Jan 28, 2010 2:29 pm
Forum: wxWidgets Development (Chinese)
Topic: why?
Replies: 5
Views: 4054

Please elaborate this post, what did you do and what platform. In the future I will delete these kind of posts on the spot, as it is a waste of time and effort from people who really want to help.

- Jorgen
by Jorg
Thu Jan 28, 2010 8:31 am
Forum: Compiler / Linking / IDE Related
Topic: Cross-compiling in Windows
Replies: 2
Views: 1479

Although it is possible (I think) why don't you just use a virtual machine with VirtualBox or VMware player? If you do not wish to install a virtual machine you can use Wubi (Ubuntu on Windows), which is a small installer that will create an image file on disk in Windows, and allows you to boot from...
by Jorg
Wed Jan 27, 2010 11:35 am
Forum: wxDev-C++
Topic: dynamic list/combobox control ?
Replies: 2
Views: 2528

Hi, All components that are derived from wxControlWithItems can change on the fly and have functionality to change the list they represent. It is a matter of choice which one is best, wxListBox, wxChoice or wxListCrtrl (the latter is a beast but can fucntion well in column mode). Usually when you ha...
by Jorg
Tue Jan 26, 2010 3:18 pm
Forum: Announcements and Discoveries
Topic: Where is bugg tracker on wxWidgets 2.9.0
Replies: 4
Views: 3975

Hi, That's why I said 'accuse' between quotes. I am only phrasing it like that because I felt in that same trap a couple of times where a configuration error / mis build or plain API misuse caused me to post a bug report. It could have saved me the embarassment and time by investigating in a minimal...
by Jorg
Tue Jan 26, 2010 11:31 am
Forum: C++ Development
Topic: Query concerning wxString
Replies: 4
Views: 2557

yeah something like that. Although I would changhe the hash seed when you release your code ;-)

Wit hregards,
- Jorgen
by Jorg
Tue Jan 26, 2010 8:11 am
Forum: Announcements and Discoveries
Topic: Where is bugg tracker on wxWidgets 2.9.0
Replies: 4
Views: 3975

Before you 'accuse' the wxWidgets development community by posting it as bugs, are you sure that the issues are really bugs? Get/SetLabel on a wxStaticText seems like a pretty basic issue and can be discovered rather quick. Can you make a minimal sample and see if the bug occurs there? Also, did you...
by Jorg
Tue Jan 26, 2010 8:07 am
Forum: C++ Development
Topic: Query concerning wxString
Replies: 4
Views: 2557

Not really an answer you were hoping for, but if you want to store a secure password that cannot be read when written to disk, it is better to store it in a MD5 hash code. This code is binary and does not need to be unicode. The advantage is that a hacker needs to decode your app to get the initial ...
by Jorg
Sat Jan 23, 2010 9:10 pm
Forum: C++ Development
Topic: is there an IDE for WxWidgets that accept unicode??
Replies: 9
Views: 5142

IMHO this is not quite true. It may be a better practice to make the source files encoding independent, but not impossible to use an unicode encoding for them. I may be misunderstanding you somewhere as well. Ok, this is one point where 15+ years of development does not work in my favor ;-) I stand...