Search found 520 matches

by vdell
Tue Apr 21, 2009 11:38 am
Forum: C++ Development
Topic: wxDialog class crashes
Replies: 1
Views: 715

Use Destroy() for manually deleting controls. However, if you destroy the dialog then all the controls in the dialog will get destroyed automatically (so there's no need to manually destroy them).
by vdell
Sun Apr 19, 2009 2:05 pm
Forum: C++ Development
Topic: [Dev-C++] Problem with code
Replies: 11
Views: 2130

OT: Please remove your animated avatar and replace it with something else. It's very annoying to see it repeatedly and it distracts the user from the text. Thanks!
by vdell
Sun Apr 19, 2009 1:51 pm
Forum: General Forum Issues
Topic: Twittering from wxForum
Replies: 5
Views: 13439

I think your idea sounds interesting as currently announcements (and such) don't really get that much attention. Unfortunately, I've never even used Twitter so I can't help with the implementation.
by vdell
Thu Apr 09, 2009 5:33 pm
Forum: C++ Development
Topic: wxWindow vs wxPanel
Replies: 4
Views: 1901

Erdirck wrote:ah, ok, thanks :)
Please mark the thread as "Accepted" if one the posts helped to solve your problem.
by vdell
Thu Apr 09, 2009 4:25 am
Forum: C++ Development
Topic: wxWindow vs wxPanel
Replies: 4
Views: 1901

wxWindow is a base class so it's not intended to be used directly. wxPanel can be used to place other controls. Have you checked the "splitter" sample in the "samples" folder (there are also many other useful samples there)?
by vdell
Sun Apr 05, 2009 6:23 am
Forum: C++ Development
Topic: Custom Events - wxCommandevent vs wxEvent
Replies: 6
Views: 1625

You can set the propagation level by modifying wxEvent::m_propagationLevel.

HTH
by vdell
Sat Apr 04, 2009 11:23 am
Forum: C++ Development
Topic: wxAuiTabArt: examples ?
Replies: 3
Views: 7639

Try looking at the built-in art providers for some tips.

HTH
by vdell
Thu Apr 02, 2009 6:06 am
Forum: C++ Development
Topic: wxAuiNotebook: tooltips on tabs ... possible ?
Replies: 1
Views: 788

Please put your big signature image as your avatar and use the signature for the important information like your OS and wx version (rule 6). Thanks!
by vdell
Thu Mar 26, 2009 9:04 am
Forum: Compiler / Linking / IDE Related
Topic: About error LNK2001
Replies: 3
Views: 1075

Please post to correct forum sections in the future. There's the "Compiler / Linking / IDE Related" for linking errors.

Thanks!
by vdell
Tue Mar 24, 2009 1:23 pm
Forum: C++ Development
Topic: Program only works when debugging
Replies: 4
Views: 12004

dheerajpatni wrote:download "mingwm10.dll" from the net and put it to "c:\\windows" folder.
What will that help when using VC++ 2005?
by vdell
Mon Mar 23, 2009 6:46 am
Forum: C++ Development
Topic: wxWidgets on web
Replies: 4
Views: 1260

I don't think that's possible.
by vdell
Fri Mar 20, 2009 6:00 am
Forum: C++ Development
Topic: wxFileDialog options per file type
Replies: 5
Views: 1618

fredrum wrote:But how do I trigger that? Say I select a blabla.avi, how do I detect that and trigger the .avi specific set of options?
But if he picks a .mpg I want to have some other options?
AFAIK, there's a no way to detect the selection event in a wx-specific way.
by vdell
Thu Mar 19, 2009 6:20 pm
Forum: C++ Development
Topic: wxFileDialog options per file type
Replies: 5
Views: 1618

wx-2.9.0 supports custom controls in wxFileDialog.
by vdell
Wed Mar 18, 2009 7:52 pm
Forum: Open Discussion
Topic: help with sql insert statement
Replies: 7
Views: 3145

raz8526 wrote:why not move it to the wxCode section since its database related
Well, mainly because it seems your problem is simply caused by the fact that the SQL syntax isn't clear to you. I forgot that there's the new "Database Related" subforum. In the future that can be used for topics like this.
by vdell
Wed Mar 18, 2009 5:26 pm
Forum: C++ Development
Topic: Manually start a process and kill
Replies: 3
Views: 1379

What does wxProcess::Kill return when you call it?