Search found 520 matches

by vdell
Wed Dec 09, 2009 12:11 pm
Forum: Forum Announcements
Topic: REQUEST FOR NEW MODERATORS!
Replies: 14
Views: 25900

I'm still occasionally checking the forum. However, other stuff has been keeping me quite busy. Hopefully that will change in the near future and I'll have more time to help other members with their wxProblems.

Regards,
vdell
by vdell
Sat Aug 01, 2009 10:59 am
Forum: C++ Development
Topic: What Sizers should I use?
Replies: 4
Views: 2532

Estien77 wrote:Thanks, I will try that. If i have any trouble I'll post it here.
I don't know if you're already using a resource editor, but it's a lot easier to try different sizer behaviors with an app like DialogBlocks, instead of manually coding.

HTH
by vdell
Fri Jul 31, 2009 4:11 pm
Forum: C++ Development
Topic: What Sizers should I use?
Replies: 4
Views: 2532

Try wxFlexGridSizer
by vdell
Thu Jul 23, 2009 6:10 am
Forum: General Development
Topic: release 2.9.0 ?
Replies: 8
Views: 4080

Btw: what do you expect from 2.9.0 what 2.8.x does not offer? Have a look at the SVN trunk's change log . It contains a lot of information about the upcoming releases. OT: MoonKid: I accidentally clicked "Accept" instead of "Quote". Sorry about that! That's what the "unnacc...
by vdell
Tue Jul 21, 2009 3:59 pm
Forum: General Development
Topic: release 2.9.0 ?
Replies: 8
Views: 4080

Elmi wrote:Btw: what do you expect from 2.9.0 what 2.8.x does not offer?
Have a look at the SVN trunk's change log. It contains a lot of information about the upcoming releases.

OT: MoonKid: I accidentally clicked "Accept" instead of "Quote". Sorry about that!
by vdell
Fri Jul 17, 2009 7:48 am
Forum: Announcements and Discoveries
Topic: wxWebConnect 1.0 released: web browser library for wxWidgets
Replies: 19
Views: 19283

Just to make sure: Is it OK to use the wxWebConnect library in an commercial application? I know that the wxWidgets license allows that but does the MPL?

TIA
by vdell
Sun Jul 12, 2009 6:24 pm
Forum: C++ Development
Topic: Draw a tree
Replies: 7
Views: 3491

Is this question wxWidgets specific?
by vdell
Sat Jul 04, 2009 10:42 am
Forum: C++ Development
Topic: Beginner-trouble understanding events
Replies: 5
Views: 2696

arunlfc wrote:Thanks a lot David.
It's much clearer now. I hope that with time it becomes much much clearer! :)
Hey Arun,

Please remember to click "Accept" for the post that helped you to solve your problem. Thanks!
by vdell
Thu Jul 02, 2009 6:08 pm
Forum: C++ Development
Topic: wxEVT_MEDIA_FINISHED doesn't work with mp3's
Replies: 2
Views: 1381

I have no knowledge about wxMediaCtrl but you might want to post a ticket to the wxWidgets Trac.
by vdell
Sat Jun 27, 2009 6:49 am
Forum: C++ Development
Topic: Convert wxString to enum.
Replies: 4
Views: 2552

Re: Convert wxString to enum.

scriptdaemon wrote:Is there an easy way to do this without using if/else statements?
Nope. You could code something similar to EnumBinder if you don't want to use the if/else-solution.

HTH
by vdell
Tue Jun 23, 2009 7:04 pm
Forum: Open Discussion
Topic: How to get the links address of a web page
Replies: 3
Views: 3311

zhvickie wrote:It may use the wxWidgets component.
Try wxHtmlParser.

HTH
by vdell
Tue Jun 23, 2009 4:15 pm
Forum: Open Discussion
Topic: How to get the links address of a web page
Replies: 3
Views: 3311

Moved under "Open Discussion" as this has nothing to do with wxWidgets.
by vdell
Sun Jun 21, 2009 10:08 am
Forum: C++ Development
Topic: wxListCtrl
Replies: 1
Views: 1739

Not possible in the current implementation. There's wxSimpleHtmlListBox which allows HTML content (but naturally lacks other features that wxListCtrl provides).
by vdell
Wed Jun 10, 2009 8:22 pm
Forum: C++ Development
Topic: wxCommandEvent to WxMouseEvent
Replies: 3
Views: 1490

You could catch the wxEVT_LEFT_DOWN / wxEVT_LEFT_UP events and check if the button is in the position of the mouse click.

HTH
by vdell
Tue Jun 09, 2009 9:00 am
Forum: C++ Development
Topic: AUI pane closure - getting informed
Replies: 3
Views: 2934

Try connecting through the frame manager:

Code: Select all

your_frame_mngr.Connect ( ... );
HTH