All OWL applications created with "OWL_WINDOW" name of window classes. Is it
possible to rename or create OWL application with own name?
Thank you in advance.
Best regards,
Ivan Stepanov
Just use GetClassName, if:
class TMyDialog : public TDialog, {
public:
TMyDialog(TWindow* parent, TResId resId = IDD_CLIENT, TModule* module =
0);
virtual ~TMyDialog();
char *GetClassName() { return("MY_DIALOG"); };
...
}
Saludos
Sebastian
"Ivan Stepanov" <isste...@yahoo.com> escribió en el mensaje
news:482da5f8$1...@newsgroups.borland.com...
Yes, override TWindow::GetClassName() for your main window.
--
Bruce
thank you very match.
It turned out, that is so simple. I was baffled before by another
GetClassName (long TWindow::GetClassName(..) )
Best regards,
Ivan Stepanov