home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / olympus / ik32_15t / delphi2.shr / FRSTPRO.DPR < prev    next >
Encoding:
Text File  |  1996-08-01  |  896 b   |  37 lines

  1. {  Project FRSTPRO.DPR Delphi 2.0 Demos
  2.  
  3.    Description:- FRSTPRO.Dpr Project:-
  4.  
  5.    Demonstrates the use of:
  6.  
  7.    1) 'FileName'
  8.    2) 'Load'
  9.  
  10.    Date of Origin: 15/04/96
  11.    Original Author: Andrew Hutchison
  12.    Modification History:
  13.  
  14.    Date        Person                            Change
  15.    ----------------------------------------------------
  16.    15/04/96    A Hutchison                       Created
  17.  
  18.    (c) Copyright Media Architects Inc. 1996.
  19.    All rights reserved.   No part of this program may be
  20.    photocopied, reproduced, translated to another programming
  21.    language or transported to any computer system without the
  22.    prior written consent of Media Architects Inc.}
  23.  
  24. program FrstPro;
  25.  
  26. uses
  27.   Forms,
  28.   UFrstPro in 'UFrstPro.pas' {Form1};
  29.  
  30. {$R *.RES}
  31.  
  32. begin
  33.   Application.Initialize;
  34.   Application.CreateForm(TForm1, Form1);
  35.   Application.Run;
  36. end.
  37.