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

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