home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / pgedri / Source / Demos / PGEDemo / CLX / PGEDemo.dpr < prev    next >
Encoding:
Text File  |  2005-04-01  |  1.0 KB  |  29 lines

  1. {*******************************************************************}
  2. {                                                                   }
  3. {       Vita Voom Software                                          }
  4. {       PGEDemo.dpr unit - PGEDemo Demo                             }
  5. {                                                                   }
  6. {       Copyright (c) 1998-2003 Vita Voom Software                  }
  7. {       ALL RIGHTS RESERVED                                         }
  8. {*******************************************************************}
  9. {                                                                   }
  10. { Please refer to the Readme.txt file for details.                  }
  11. {                                                                   }
  12.  
  13. program PGEDemo;
  14.  
  15. uses
  16.   QForms,
  17.   Main in 'Main.pas' {frmDemo},
  18.   Reconcile in 'Reconcile.pas' {ReconcileErrorForm};
  19.  
  20. {$IFDEF MSWINDOWS}
  21.   {$R *.RES}
  22. {$ENDIF}
  23.  
  24. begin
  25.   Application.Initialize;
  26.   Application.CreateForm(TfrmDemo, frmDemo);
  27.   Application.Run;
  28. end.
  29.