-=======
- m_enter = new MyTextCtrl( this, -1, "Multiline, allow <ENTER> processing.",
- wxPoint(180,170), wxSize(240,70), wxTE_MULTILINE | wxTE_PROCESS_ENTER );
-
- wxButton *button;
-
- (void)new wxStaticBox( this, -1, "&Move cursor to the end of:", wxPoint(445, 10), wxSize(160, 100) );
- button = new wxButton( this, ID_MOVE_END_ENTRY, "&Single-line", wxPoint(470, 30), wxSize(110, 30) );
-#if wxUSE_TOOLTIPS
- button->SetToolTip("Move cursor in single-line text control to end of line.");
-#endif
- button = new wxButton( this, ID_MOVE_END_ZONE, "&Multi-line", wxPoint(470, 70), wxSize(110, 30) );
-#if wxUSE_TOOLTIPS
- button->SetToolTip("Move cursor in multi-line text control to end of first line.");
-#endif