Search found 864 matches

by Sof_T
Thu Nov 13, 2008 8:22 am
Forum: C++ Development
Topic: Removing file extensions
Replies: 4
Views: 1473

Another options which might be overkill is feed each name to a wxFileName object then use GetName();

http://docs.wxwidgets.org/stable/wx_wxf ... amegetname
by Sof_T
Tue Nov 11, 2008 10:23 pm
Forum: C++ Development
Topic: How/where is wx/ defined for MSW?
Replies: 6
Views: 1605

What are using to compile it with? Generally I feed the wxWidgets include path to the compiler.
by Sof_T
Sun Nov 09, 2008 10:35 pm
Forum: General Development
Topic: wxRichTextCtrl question
Replies: 5
Views: 1642

with wxRichTextCtrl won't you need to catch the EVT_RICHTEXT_RETURN event? Are you sure you are using wxRichTextCtrl and not wxTextCtrl?
by Sof_T
Mon Nov 03, 2008 5:28 pm
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

If you are writing your own you might be better starting from here http://docs.wxwidgets.org/stable/wx_wxr ... chtextctrl
by Sof_T
Mon Nov 03, 2008 1:10 pm
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

If you are using gcc (mingw) the link order is very important, try moving the position of the library in the link order
by Sof_T
Mon Nov 03, 2008 10:11 am
Forum: wxDev-C++
Topic: Why there is a "Window" menu in the MenuBar?
Replies: 2
Views: 987

You might get a better response in another section of the forum, this section is devoted to users of wxDev-C++ which is a windows based c++ IDE. Good Luck.
by Sof_T
Mon Nov 03, 2008 10:02 am
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

Did you build the library yourself? The Styled Text Control is in the contrib section and needs building seperately. I'll attach a zip of the library on my system. It might work providing the compilers are compatable I guess you are using a version of GCC.
by Sof_T
Sun Nov 02, 2008 10:37 pm
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

On my system using 2.8 it is named libwxmsw28_stc.a
by Sof_T
Sun Nov 02, 2008 10:36 pm
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

Which version number of wx are you using?
by Sof_T
Sun Nov 02, 2008 10:11 pm
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

At present wxStyledTextControl is not part of the standard distribution (it is from 2.9.0 onwards). Therefore you need to link to the library containing the control as well, you will find it with the other wx libraries and it will have stc in the file name. Documentation is fairly limited at present...
by Sof_T
Sun Nov 02, 2008 8:42 pm
Forum: Announcements and Discoveries
Topic: [ANN]wxGoogleTranslate - Google Translate Wrapper
Replies: 2
Views: 2350

Many thanks for these components, keep on wrapping ;-)
by Sof_T
Sun Nov 02, 2008 2:54 pm
Forum: General Development
Topic: using wxTextCtrl as a simple text editor
Replies: 13
Views: 3947

Try using wxStyledTextControl
by Sof_T
Fri Oct 31, 2008 7:57 am
Forum: wxDev-C++
Topic: using wxdev c++ on cross platform
Replies: 3
Views: 1159

For the last one you can use either of these wxString wxGetUserName() bool wxGetUserName(char * buf, int sz) ShellExecute will only work on Windows, you will need to use something from here http://docs.wxwidgets.org/stable/wx_processfunctions.html#processfunctions wxSTMP should work under Linux, not...