home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* TESTAPP.PAS *)
- (* Include-Datei zum Einbinden in WORKAPP.PAS *)
- (* ------------------------------------------------------ *)
-
- TYPE
- pTestApp = ^tTestApp;
- tTestApp = OBJECT (tDialog)
- CONSTRUCTOR Init;
- END;
-
- CONSTRUCTOR tTestApp.Init;
- VAR
- R : tRect;
- BEGIN
- R.Assign(2, 1, 77, 22); (* jetzt maximale Größe --
- wird später angepaßt *)
- inherited Init(R, 'Test Dialog');
- END;
-
- (* ------------------------------------------------------ *)
- (* Ende von TESTAPP.PAS *)
-