Search found 162 matches

by eros
Thu Jan 13, 2005 4:10 pm
Forum: Announcements and Discoveries
Topic: Code::Blocks IDE version 1.0-beta4 released!
Replies: 9
Views: 4300

Please keep up the good work.
by eros
Wed Dec 15, 2004 1:18 pm
Forum: wxDev-C++
Topic: executable very huge ????
Replies: 14
Views: 8305

Yep using mingw is not good for final builds, if you want to develop using devcpp or wxdevcpp thats fine but at the time to release compile it with microsoft vc++.

what to say, for ms windows there's no better compiler....
by eros
Fri Dec 03, 2004 8:04 am
Forum: C++ Development
Topic: Using wxFileConfig directly
Replies: 8
Views: 3542

And then which class should I use?

wxConfig? or wxFileConfig?

I'm confused about this.
by eros
Fri Dec 03, 2004 3:12 am
Forum: C++ Development
Topic: Using wxFileConfig directly
Replies: 8
Views: 3542

Using wxFileConfig directly

Can anyone give me an example on how to use the file config directly, I've read the manual over and over again but I don't get it.

Do I get to call wxConfig on every class I need to save stuff?
by eros
Fri Dec 03, 2004 2:28 am
Forum: C++ Development
Topic: Can wxWindows used to develop windows services??
Replies: 3
Views: 1532

Whats the point of using wxWidgets to create windows services?

Use .net
by eros
Sat Nov 27, 2004 3:41 am
Forum: C++ Development
Topic: why can't i get the key event?
Replies: 5
Views: 2550

My guess is that your frame has another control in it, or your status bar has the focus by default. SetFocus() before showing the frame and it will work, the major issue with this is that key events are not propagated to the parent window, read about it here I'm having the same problems to handle ke...
by eros
Wed Nov 24, 2004 6:23 pm
Forum: Forum Announcements
Topic: GREAT MOD EXTENSION ADDED!
Replies: 13
Views: 9930

Its looking really good so far. Good work :)
by eros
Wed Nov 24, 2004 2:32 am
Forum: C++ Development
Topic: Visual C++ 6 & code completion
Replies: 13
Views: 4824

Doing some research, I could only find out how to integrate XML files with the dynamic help, but making it avaiable for wxWidgets would take its time. :S

No clue how to enable intellisense for thirdparty libraries.
by eros
Tue Nov 23, 2004 5:58 am
Forum: Compiler / Linking / IDE Related
Topic: compile errors regarding dde.h
Replies: 3
Views: 1839

Try reading the Wiki, I'm using CVS with VC.NET w/o problems.
by eros
Tue Nov 23, 2004 5:56 am
Forum: C++ Development
Topic: wxFrame and wxDialog
Replies: 6
Views: 2689

Hmm, my guess is that you're confusing wxFrame and wxDialog... AFAIK wxFrame does not process wxID_OK or wxID_CANCEL, dialog does. ... class MyDlg : public wxDialog { public: MyDlg(wxWindow *parent); private: wxSizer *m_sizer; wxButton *m_cancel; wxButton *m_ok; }; ... MyDlg:MyDlg(wxWindow *parent) ...
by eros
Tue Nov 23, 2004 3:27 am
Forum: C++ Development
Topic: Visual C++ 6 & code completion
Replies: 13
Views: 4824

How's the syntax completition file for visual studio?

I have no probs in generating any type of XML file from the docu (latex or HTML itself) but I have no idea about the specs of the XML file.
by eros
Mon Nov 22, 2004 8:09 pm
Forum: C++ Development
Topic: Propagate key events to top window
Replies: 3
Views: 2166

wxCommandEvent is propagated by default, you don't need to do anything. I was just reading the manual again, and I found this: In some cases, it might be desired by the programmer to get a certain number of system events in a parent window, for example all key events sent to, but not used by, the na...
by eros
Mon Nov 22, 2004 2:39 am
Forum: C++ Development
Topic: Propagate key events to top window
Replies: 3
Views: 2166

Propagate key events to top window

Is there any way to propagate the key events to a top window, say, from a child panel to its frame?

Or it needs to be defined in the event table?

wxCommand events are propagated by default, I'd like the same feature for key events.
by eros
Sun Nov 21, 2004 10:26 pm
Forum: General Development
Topic: Promoting wx a little bit
Replies: 2
Views: 1423

Promoting wx a little bit

Well, I was just thinking, since there are a few experienced C++ and wx programmers around, wouldn't it be great if someoone could write (at least simple) articles/tis/howtos of wxWidgets for the Code Project , I know most of you don't have time, but well... I'd do it myself, but I'm just a beginner...
by eros
Wed Nov 10, 2004 5:58 am
Forum: C++ Development
Topic: Need Help about "wxString" and "wxInputStream
Replies: 4
Views: 2478

if you're trying to read an image you proably need to open the file in binary form.