Search found 11 matches

by frrossk
Thu Mar 03, 2005 8:59 am
Forum: wxDev-C++
Topic: Dev-CPP DEBUG not working
Replies: 14
Views: 5038

by frrossk
Fri Feb 11, 2005 8:44 am
Forum: C++ Development
Topic: disable a button
Replies: 3
Views: 1474

Could you use a wxValidator? (just an idea)
by frrossk
Fri Jan 28, 2005 1:24 pm
Forum: C++ Development
Topic: wxTextInputStream: How to detect EOF?
Replies: 1
Views: 896

by frrossk
Fri Jan 21, 2005 9:25 am
Forum: C++ Development
Topic: What header: wxFileName
Replies: 1
Views: 964

Re: What header: wxFileName

In wx 2.5.3 exists <wx/filename.h>; I don't know about wx 2.4.2
by frrossk
Fri Jan 21, 2005 6:50 am
Forum: wxDev-C++
Topic: wx-DevCpp Tutorial available.
Replies: 6
Views: 3315

Re: very good job

First, I liked your tutorial; it's really useful for newbies (like me) :) >>And what would you like to see iin the next chapter I'd be happy to see some examples about using sizers (that's a part where I have some problems), but that's only my opinion...:), of course, "if that there is going to...
by frrossk
Fri Jan 14, 2005 12:14 pm
Forum: wxDev-C++
Topic: WxWindows-2.2.9.DevPack
Replies: 4
Views: 2600

I think you are able to set these changes after you start a new project, in Project -> Project options (I'm not sure; I'm working with wxDevCpp, and this IDE has wxWidgets included in it; no need for special settings)
by frrossk
Thu Jan 13, 2005 7:03 am
Forum: wxDev-C++
Topic: WxWindows-2.2.9.DevPack
Replies: 4
Views: 2600

You can download the last version of wxWidgets (this is the new name of wxWindows) from http://www.wxwidgets.org/ . Also, instructions for using wxWidgets with Dev-cpp from http://www.wxwindows.org/devcpp.htm Or from here: http://www.andre-simon.de/doku/wxwidgets/devpak_install.html Or, download wxD...
by frrossk
Thu Jan 13, 2005 6:55 am
Forum: C++ Development
Topic: 'wxTreeCtrl' : base class undefined??
Replies: 2
Views: 1726

Re: 'wxTreeCtrl' : base class undefined??

In TreeCtrl.h you missed a ; #ifndef _TREE_CTRL_H #define _TREE_CTRL_H class CTreeCtrl : public wxTreeCtrl { public: CTreeCtrl(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTR_HAS_BUTTONS, const wxValidator& va...
by frrossk
Fri Jan 07, 2005 7:57 am
Forum: wx.NET
Topic: important bug
Replies: 6
Views: 4037

Re: important bug

[quote="xml"]if we put a char like
by frrossk
Wed Jan 05, 2005 7:02 am
Forum: C++ Development
Topic: wxTextCtrl and Undos
Replies: 4
Views: 1892

>>Also if I want my editor to be able to open a file of >1Mb, how will I do it ?

I think you have to define the style for your wxTextCtrl window as wxTE_RICH (I'm assuming you are working on Windows).