Search found 3759 matches

by Jorg
Sat Apr 10, 2010 10:14 pm
Forum: wxDev-C++
Topic: Hardycreations
Replies: 13
Views: 7933

It is just pathetic that people can do this with a clear consciousness. They are either severely intellectually challenged, or they just don't care. It is one thing to repackage a product and get money out of it, it is another thing to claim you "created" it. Or his definition of software ...
by Jorg
Sat Apr 10, 2010 8:29 am
Forum: wxDev-C++
Topic: Hardycreations
Replies: 13
Views: 7933

Are you going to take steps against him? Or are you going to let it play out and maybe let him get some bucks for his scam?

With regards,
- Jorgen
by Jorg
Fri Apr 09, 2010 7:40 am
Forum: wxDev-C++
Topic: Hardycreations
Replies: 13
Views: 7933

So now he made it commercial? Doesn't wxDev-C++ have a GNU license that prohibits this? In any case I would love to see the email traffic between the wxDev-Cpp developers and this scam artist? Even the list of features on the main site is a direct copy of the features from the wxDev-Cpp site. What a...
by Jorg
Sat Apr 03, 2010 5:54 pm
Forum: Announcements and Discoveries
Topic: wxSeasons TV-Series manager
Replies: 3
Views: 3775

To get people interested and starting to download it, it would be worth putting up some examples.

With regards,
- Jorgen
by Jorg
Fri Apr 02, 2010 8:28 am
Forum: C++ Development
Topic: Unique wx IDs?
Replies: 20
Views: 8052

You should not define constants for events. Use wxNewId() or define -1 when you create the control. If you use constant ID numbers the system gets hopelessly complex. Mostly you can just store the pointer to a control in a member variable. wxNewId() is a call that will give you back a unique number,...
by Jorg
Fri Apr 02, 2010 8:18 am
Forum: Announcements and Discoveries
Topic: wxSeasons TV-Series manager
Replies: 3
Views: 3775

Sounds interesting. Do you also have a page where you show an example? Does it have a GUI or is it text based or just a component?

I will place this in Announcments for you as it is not really a code snippet but a project.

With regards,
- Jorgen
by Jorg
Wed Mar 31, 2010 10:55 am
Forum: C++ Development
Topic: Implementing a Custom List
Replies: 9
Views: 3602

wxFoldBar / wxFoldPanelBar is a component I wrote a long time ago, it ended up in the contrib folder of wxWidgets maybe it is still there. It basically does what you want, except the wxCaptionBar needs to be modified by you to add custom icons to it. It is still in the 2.8.10 release, I am not sure ...
by Jorg
Tue Mar 30, 2010 7:29 am
Forum: General Forum Issues
Topic: 1st post on a new page seems not to get an accept button
Replies: 4
Views: 7798

Ahhh ok, that is NOT by design ... I didn't got the new page part. Well before my g/f had to leave for the US I was busy setting up a shadow forum so that we could upgrade to a newer phpbb version. However she took my (old) laptop which I was experimenting on for the duration of her trip. Which mean...
by Jorg
Mon Mar 29, 2010 8:47 am
Forum: General Forum Issues
Topic: 1st post on a new page seems not to get an accept button
Replies: 4
Views: 7798

That is by design, if you ask a question and accept the first post, people do not know the solution. So when you want to accept your own post (assuming the 1st post is the initial post), post a reply explainign what you did or didn't do to fix it and accept that one. And as far as I know if the pers...
by Jorg
Thu Mar 25, 2010 8:18 am
Forum: C++ Development
Topic: Data encryption and wx
Replies: 17
Views: 27664

I think if you use SQLite you can (as suggested before somewhere on this forum) specify it to be encryptd automatically.

http://www.hwaci.com/sw/sqlite/see.html

Too funny how it is called "SEE" while it's purpose is that you can't see a bloody thing afterwards ;-)

With regards,
- Jorgen
by Jorg
Sat Mar 13, 2010 8:39 am
Forum: wxCode
Topic: How do I get wxArchive, wxSerialize?
Replies: 1
Views: 2272

I have them but not on my site at the moment. Are you the same person who emailed me? I was going to reply to you by email later on today and will send you the code.

If not, please give me your email address and I will send a copy to you too.

With regards,
- Jorgen
by Jorg
Tue Mar 09, 2010 7:39 am
Forum: C++ Development
Topic: wxTreeCtrl vertical spacing
Replies: 4
Views: 2208

You probably won't succeed in specifying the vertical spacing per tree item. If it is possible it is a Windows only thing. You can take a look at the generic version of wxTreeCtrl which is owner drawn. You probably have to sacrifice a bit of native look and feel in order to get this done. Another wa...
by Jorg
Sat Mar 06, 2010 3:09 pm
Forum: C++ Development
Topic: Best way to write a custom defined class into a file
Replies: 8
Views: 3429

Hi,

If you want a copy of wxSerialize, I will send the source to you. I am indeed in the progress of setting up my site it goes slower then I want to, so I can hand out the latest releases if needed.

email: jorgb [@] xs4all.nl

With regards,
- Jorgen
by Jorg
Tue Mar 02, 2010 8:03 am
Forum: C++ Development
Topic: Why aren't all wxStandardPaths methods static?
Replies: 1
Views: 1591

For that answer the only true way to get it is look at the sources. I would agree that a class that is instantiated only once, has no state might as well be a collection of static methods instead of member methods. But perhaps in the constructor all paths are resolved, which might be a costly thing ...
by Jorg
Sun Feb 21, 2010 9:39 am
Forum: Platform Related Issues
Topic: Cross Compiled arm nas snake-os
Replies: 3
Views: 1954

Maybe you can use this. It is a starting point to compile wxWidgets embedded:

http://www.wxwidgets.org/docs/embedded.htm

- Jorgen