Hiya everyone,
1. Treebook Sub Page
Hey, in DB how do you add a sub page to a Treebook. I can easily code
it - but would like to know how to do it within the DB environment.
2. Insert code
How do you insert code so it stays? I placed some code in the Create
method (see where below), but when I renamed the class in DB the code
was removed.
bool CmdFrame::Create( wxWindow* parent, wxWindowID id, const
wxString& caption, const wxPoint& pos, const wxSize& size, long
style )
{
////
begin CmdFrame creation
wxFrame::Create( parent, id, caption, pos, size, style );
CreateControls();
Centre();
////
end CmdFrame creation
-->> I placed some code here
return true;
}
Many thanks,
Mark
.