home *** CD-ROM | disk | FTP | other *** search
- { Project Assign.DPR Delphi 2.0 Demos
-
- Description:
-
- Date of Origin: 15/04/96
- Original Author: Andrew Hutchison
- Modification History:
-
- Date Person Change
- ----------------------------------------------------
- 15/04/96 A Hutchison Created
-
- (c) Copyright Media Architects Inc. 1996.
- All rights reserved. No part of this program may be
- photocopied, reproduced, translated to another programming
- language or transported to any computer system without the
- prior written consent of Media Architects Inc.}
-
- program Assign;
-
- uses
- Forms,
- UAssign in 'UAssign.pas' {Masterform};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TMasterform, Masterform);
- Application.Run;
- end.
-