Search found 1287 matches

by tierra
Sat Oct 30, 2004 1:01 am
Forum: C++ Development
Topic: Still looking for enter key SAMPLE CODE!!!
Replies: 7
Views: 2748

I am basically coming to wxWidgets from Borland Kylix and you know how Visual Basic like their IDE is. Actually, if you have all your base project stuff running smooth with wxApp implementation, etc, and all you've got is adding dialogs with DialogBlocks (and it may be this way with others), and so...
by tierra
Fri Oct 29, 2004 4:56 am
Forum: C++ Development
Topic: Still looking for enter key SAMPLE CODE!!!
Replies: 7
Views: 2748

If your really in a rush, and can't be bothered with figuring out how wx properly handles tabbing, and other systems, it would be as simple as implementing OnEnter() and calling m_otherTextCtrl.SetFocus(). But I can guarantee you'll be better off working with the right systems in future time... you'...
by tierra
Thu Oct 28, 2004 6:27 am
Forum: wxDev-C++
Topic: wx-DevCpp wxWidgets 2.5.3 - when?
Replies: 8
Views: 3914

You guys have got me all interested and curious to install DevCpp and play around with stuff and get away from MSVC... still going to be a while before I do that though, I'm kind-of in the middle of something.
by tierra
Sun Oct 24, 2004 5:09 pm
Forum: Announcements and Discoveries
Topic: wxPropertyGrid
Replies: 14
Views: 5681

Jorg wrote:So what ? It looks great! I modelled wxTreeMultiCtrl after the property tree control after the thunderbird / mozilla property sheet ..
I was pretty sure I hadn't seen anything like it except in Mozilla, I've kinda been wondering about that for a while, but not enough to bother to ask... =)
by tierra
Sun Oct 24, 2004 5:32 am
Forum: Announcements and Discoveries
Topic: wxPropertyGrid
Replies: 14
Views: 5681

Excellent work!
by tierra
Sat Oct 23, 2004 5:40 am
Forum: General Development
Topic: Thoughts about a cross-platform IDE written in wxWidgets...
Replies: 45
Views: 13715

You know... I don't see the reason for so much fuss... I've been using DialogBlocks for maybe 6-7 months now, and it's amazing. I'm able to plug in pretty complex dialogs in a matter of one day to maybe a week with a very complex dialog with my IDE of choice (which right now since my company has the...
by tierra
Fri Oct 22, 2004 6:51 pm
Forum: General Development
Topic: UI Designer for VC++ would be the killer app for wxWidgets
Replies: 15
Views: 7246

I take wxWidgets above Ultimate++ anyday. As would I. From what it looks like, the whole purpose they're aiming for quick code generation to cut on hourly rate programming costs for cross-platform development. Seems to me that they have a bad goal in the first place if all they're working on is lin...
by tierra
Fri Oct 22, 2004 6:40 pm
Forum: General Development
Topic: UI Designer for VC++ would be the killer app for wxWidgets
Replies: 15
Views: 7246

Re: UI Designer for VC++ would be the killer app for wxWidge

I am currently developing a replacement / enhancement for wxFL which has been a month in coming and is only now realizing its true form, and would no doubt be useful for any IDE. This is a little OT, but speaking of which, have you talked with Mike yet about his work? I hope none of your changes co...
by tierra
Thu Oct 21, 2004 9:24 pm
Forum: Compiler / Linking / IDE Related
Topic: platform.h error including "wx/setup.h"
Replies: 7
Views: 3916

This is in fact an IDE specific problem. You need to make sure the project your building and the libraries it links to use the same Code Generation options in MSVC. You can check/change those options per-project under the project's properties in C/C++ under Code Generation. The problem your probably...
by tierra
Wed Oct 20, 2004 10:10 pm
Forum: Compiler / Linking / IDE Related
Topic: wxTextCtrl default value
Replies: 6
Views: 3944

Are you using DialogBlocks (I don't think DialogBlocks does this actually) or some other GUI tool?
by tierra
Wed Oct 20, 2004 10:00 pm
Forum: C++ Development
Topic: Visual C++ 6 & code completion
Replies: 13
Views: 4870

Like I said, it takes time, and a lot of it... VC usually tries to sneak in caching and stuff during idle use, etc... it's not a prominent and required feature, it's just nice to have on the side when it's there. Secondly, I've had problems with Intellisense as have others. I got so used to using it...
by tierra
Wed Oct 20, 2004 7:39 pm
Forum: C++ Development
Topic: Visual C++ 6 & code completion
Replies: 13
Views: 4870

Intellisense tends to pick up (after a fair amount of time to build the huge ncb file) functions and classes declared in files explicitly included in any of your included project files. So, if you need intellisense for something like wxDropTarget or related, in your pre-compiled header or main proje...
by tierra
Wed Oct 20, 2004 7:28 pm
Forum: C++ Development
Topic: Visual C++ 6 & code completion
Replies: 13
Views: 4870

wxVisualSetup boasts some help with that:
http://www.litwindow.com/wxVisualSetup/
by tierra
Wed Oct 20, 2004 5:45 pm
Forum: Forum Announcements
Topic: Reporting new forum features, or bugs / inconsistencies
Replies: 4
Views: 20345

It would probably be a good idea to point out clearly that this is not for wxWidgets bugs or features. It's only meant for forum features/bugs (I hope there isn't any bugs, those should be taken care of at phpbb.com).
by tierra
Tue Oct 19, 2004 1:04 am
Forum: C++ Development
Topic: FL demos crash when capturing mouse event
Replies: 5
Views: 2467

I've confirmed the bug, and the fix, and submitted to SF: http://sourceforge.net/tracker/index.php?func=detail&aid=1049693&group_id=9863&atid=109863 [syntax="c"]if (mMouseCaptured) { ReleaseMouse(); mMouseCaptured = false; }[/syntax] The fix only needs to be applied to 2.5.3. I...