Search found 5 matches

by alankdkd
Fri Aug 30, 2019 9:52 pm
Forum: C++ Development
Topic: wxProgressDialog refusing to hide and die
Replies: 7
Views: 3596

Re: wxProgressDialog refusing to hide and die

I've got this problem too. I need to make the progress dialog go away and show a message. It should be simple. Destroy() before my wxMessageBox causes a memory error, but works ok after. So I'm trying to hide the progress dialog until after the message box. I've tried Lower(), Hide(), and Close(), a...
by alankdkd
Thu Feb 21, 2019 9:14 pm
Forum: Compiler / Linking / IDE Related
Topic: Trying to compile hello world example with visual studio 2017
Replies: 9
Views: 2901

Re: Trying to compile hello world example with visual studio 2017

ONEEYEMAN: Thanks for the fast reply! I'll try your suggestions. :D
by alankdkd
Thu Feb 21, 2019 7:42 pm
Forum: Compiler / Linking / IDE Related
Topic: Trying to compile hello world example with visual studio 2017
Replies: 9
Views: 2901

Re: Trying to compile hello world example with visual studio 2017

"If you get an error saying "wxUSE_FOO must be defined", it means that you are not using the correct up-to-date version of setup.h. This happens most often when using svn or daily snapshots and a new symbol was added to setup0.h and you haven't updated your local setup.h to reflect i...
by alankdkd
Mon Feb 04, 2019 6:55 pm
Forum: C++ Development
Topic: Pass forward accelerator keys
Replies: 7
Views: 2885

Re: Pass forward accelerator keys

FYI, I think this problem has been solved here: viewtopic.php?t=39477

See TomasRiker's comment (#3).
by alankdkd
Mon Feb 04, 2019 6:35 pm
Forum: C++ Development
Topic: How to disable accelerator hot keys inside wxTextCtrl ?
Replies: 4
Views: 2090

Re: How to disable accelerator hot keys inside wxTextCtrl ?

TomasRiker: Thanks! This is what I've been looking for! :D