home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / pgedri / Source / Demos / Params / Params.dpr < prev    next >
Encoding:
Text File  |  2005-04-01  |  974 b   |  26 lines

  1. {*******************************************************************}
  2. {                                                                   }
  3. {       Vita Voom Software                                          }
  4. {       Params.dpr - Params 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. program Params;
  13.  
  14. uses
  15.   QForms,
  16.   Main in 'Main.pas' {frmDemo};
  17.  
  18. {$R *.res}
  19.  
  20. begin
  21.   Application.Initialize;
  22.   Application.CreateForm(TfrmDemo, frmDemo);
  23.   Application.Run;
  24. end.
  25.  
  26.