Borland's OWL
Borland's OWL programming environment is suimialr to Microsoft's MFC environment, with just enough differences to be a nuisance.
The base classes all begin with the letter T.
The TApplication Class
The application is driven by an instance of a class derived from TApplication .
The main loop takes the form.
int OWLMain( int /* argc */, char * /* argv */)
{
TMywindow app;
return app.Run();
}
Widgets
OWL provides control widgets justs as does MFC.
- TStatic: Label
- TEdit: edit box.
- TListbox: List box
- TGroupBox: For grouping related controls such as
- TRadioButton
- TButton
OWL Example
This extended OWL example was written by Larry Shreve. May 1995.
Resource File
Header File
Code File
Return to
GUI home page
Last Changed: 26 June 1995