home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / tvision / gravis / gv / gvguid01.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-05-23  |  642 b   |  28 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Pascal 6.0                             }
  4. {   Demo program from the Turbo Vision Guide     }
  5. {                                                }
  6. {   Copyright (c) 1990 by Borland International  }
  7. {                                                }
  8. {************************************************}
  9.  
  10. { modifiziert für Graphics Vision von Stefan Milius }
  11.  
  12. program GVGUID01;
  13.  
  14. uses GVApp;
  15.  
  16. type
  17.   TMyApp = object(TApplication)
  18.   end;
  19.  
  20. var
  21.   MyApp: TMyApp;
  22.  
  23. begin
  24.   MyApp.Init;
  25.   MyApp.Run;
  26.   MyApp.Done;
  27. end.
  28.