Search found 34 matches

by tedzini
Sat Oct 16, 2010 4:36 pm
Forum: C++ Development
Topic: wxImage::saveFile errors 2.9.1 , mathplot.cpp
Replies: 2
Views: 10956

wxImage::saveFile errors 2.9.1 , mathplot.cpp

Greetings, I've been using mathplot.cpp under 2.8.3 for winXP and now I'm trying to recompile it with 2.9.1. The VSC9 compilation fails with: 1>.\mathplot.cpp(2255) : error C2248: 'wxString::wxString' : cannot access private member declared in class 'wxString' for the method: bool mpWindow::SaveScre...
by tedzini
Mon Apr 26, 2010 2:14 pm
Forum: C++ Development
Topic: wxBookCtrl, changing page order
Replies: 1
Views: 789

wxBookCtrl, changing page order

Greetings,

I want to set book page ordering dynamically during execution; for example, so when a user returns to the dialog I can set last page utilized.

What method can I use to re-order the pages during run-time?

thanks much in advance,

T
by tedzini
Thu Apr 22, 2010 4:21 am
Forum: General Development
Topic: 'newbie' question: sending wxID_EXIT to window
Replies: 2
Views: 1072

Auria,

Close(true) did the trick.

thanks!

t
by tedzini
Tue Apr 20, 2010 2:38 pm
Forum: General Development
Topic: 'newbie' question: sending wxID_EXIT to window
Replies: 2
Views: 1072

'newbie' question: sending wxID_EXIT to window

Greetings, I'm trying to get my app to shut down a child wxWindow from a wxFrame parent. e.g., call achild wxWindow class' method from the app as in: mywxWindow::ForceClose() { wxCommandEvent event( wxID_EXIT, GetId() ); event.SetEventObject( this ); GetEventHandler()->ProcessEvent( event ); } probl...