Search found 124 matches

by GianT
Fri May 26, 2006 4:17 am
Forum: Forum Announcements
Topic: 10000+ Posts!!!
Replies: 19
Views: 30949

Hey, I've been sleeping out of programming in C++ for about one year, this post reminds me of my past on this forum. Well I'll tell that I'm pleased to having helped you if I did, and I think that everyone thinks like me if they helped you too :wink:
by GianT
Wed Jul 13, 2005 10:47 pm
Forum: General Forum Issues
Topic: Feature Request - Answered Post
Replies: 29
Views: 11997

Wooow, what a nice discussion... :D Well just a thing concerning your awards system: this will provoke a conflict with the system relative to the number of posts. I mean that after some 100+ posts, the poster get the status of wxwidgets junior expert, but actually he is not inevitably an expert... I...
by GianT
Mon Jul 11, 2005 10:30 pm
Forum: C++ Development
Topic: How to lower the disk space taken by my programs!
Replies: 26
Views: 7043

Ok! With the UPX compresser, I manage to take the size down to 600ko! I expected less, but it is far better than the 3Mo of the beginning. Thanks. >>Jorg: if you could explain what I didn't understand, maybe I could have a better result. Btw, I think you should put a thread in the FAQ which subject ...
by GianT
Mon Jul 11, 2005 6:32 pm
Forum: C++ Development
Topic: How to lower the disk space taken by my programs!
Replies: 26
Views: 7043

lowjoel's UPX with GUI can be found on his website: joelsplace.sg/studyroom/index.php Ok, gonna take a look at this. To optimize in DevCPP, go to Projects -> Project Options -> Click Compiler Tab -> Click Optimiztions -> Make Best Optimizations say Yes For me this is enabled by default. Mine is als...
by GianT
Mon Jul 11, 2005 6:28 am
Forum: C++ Development
Topic: How to lower the disk space taken by my programs!
Replies: 26
Views: 7043

Hi, In Linux you can use the command line tool "strip" Hope that helps. Maybe it will help others, but not me, I work under Windows XP.Thanks - Compile wx with optimized for size Well, I don't know what you mean, but in the project options/compiler, there is an option set to better optimi...
by GianT
Mon Jul 11, 2005 5:24 am
Forum: C++ Development
Topic: How to lower the disk space taken by my programs!
Replies: 26
Views: 7043

How to lower the disk space taken by my programs!

Hi, I would like to know if you don't know some tips to lower the size of the applications made in c++ or even in other programming language... I use wxDev-cpp, and I let it create all the basic files for my projects, but I noticed that even for a single window frame, the program takes about 3Mo!! I...
by GianT
Mon Jul 11, 2005 4:50 am
Forum: General Forum Issues
Topic: Feature Request - Answered Post
Replies: 29
Views: 11997

Hi, talking about answered posts, I was thinking about something...Sometimes, people (it happens to me a lot :D ) find themselves the solution to their problem, or just another way to do it. That's what happened to me in the c++ forum. I found another way to do what I wanted to, so I put the flag [c...
by GianT
Mon Jul 11, 2005 4:35 am
Forum: C++ Development
Topic: [cancelled]standard wxdialog buttons with CreateButtonSizer
Replies: 3
Views: 1876

Hi, thanks for answering. I took a look at the layout sample which uses sizers, and I found a way to create buttons without CreateButtonSizer. Actually, it is possible to create standard buttons with wxButton thanks to their ID.
And it is better to create them one at a time indeed... :lol:
by GianT
Sun Jul 10, 2005 1:12 am
Forum: C++ Development
Topic: [cancelled]standard wxdialog buttons with CreateButtonSizer
Replies: 3
Views: 1876

Errr, no seriously, nobody know how this works? :( :cry:
by GianT
Tue Jun 28, 2005 9:55 pm
Forum: C++ Development
Topic: [cancelled]standard wxdialog buttons with CreateButtonSizer
Replies: 3
Views: 1876

[cancelled]standard wxdialog buttons with CreateButtonSizer

Hi all, quote from wxWidgets doc: wxDialog::CreateButtonSizer wxSizer* CreateButtonSizer(long flags) Creates a sizer with standard buttons. flags is a bit list of the following flags: wxOK, wxCANCEL, wxYES, wxNO, wxHELP, wxNO_DEFAULT. This doesn't show any kind of buttons in my wxDialog... How to do...
by GianT
Tue Jun 28, 2005 3:59 pm
Forum: Forum Announcements
Topic: 10000+ Posts!!!
Replies: 19
Views: 30949

That's about it .. nobody is expected to do much, but if we all do a bit it can make a difference. There is no designated forum for a person to watch, we all watch all forums Smile Actually, if I become moderator, I will mostly do like upCASE, I mean giving people solutions to their problems. But f...
by GianT
Tue Jun 28, 2005 1:12 am
Forum: C++ Development
Topic: [Resolved] Can't create an instance of a class
Replies: 8
Views: 2608

No problem anymore, I just declared all the variables I give in arguments as global ones in the cpp file, instead of declaring them in the header file.
by GianT
Tue Jun 28, 2005 1:08 am
Forum: C++ Development
Topic: Access a wxMenuBar through a function(pass pointer,address)
Replies: 8
Views: 2734

I think I managed to give to the thread the main newProgramFrame object, thanks to the thread sample of wxWidgets. But the problem is that the event never arrives!!!It is sent but I don't know where it finishes. Here is the way I deined the function which creates the thread: ThreadServer * OnClientC...
by GianT
Mon Jun 27, 2005 10:10 pm
Forum: Forum Announcements
Topic: 10000+ Posts!!!
Replies: 19
Views: 30949

Congratulations guys, \:D/ =D> Depending on what happens to me in the next months, as I'm really interested in developping applications with wxwidgets, perhaps you will count a fourth moderator in your team!! :mrgreen: Good continuation We've technically got 7 moderators http://forums.wxwidgets.org...
by GianT
Mon Jun 27, 2005 9:38 pm
Forum: C++ Development
Topic: Access a wxMenuBar through a function(pass pointer,address)
Replies: 8
Views: 2734

Ok, 3 things: - First one: I don't know how to give it to the thread. In the thread sample, I saw that it should be something like th = new ThreadServer(this); with "this" giving the current newProgramFrame object, but the problem is that I donc't manage to make "this" be the cur...