home *** CD-ROM | disk | FTP | other *** search
- { Project Mask.DPR Delphi 2.0 Demos
-
- Description:- Mask.Dpr Project:-
-
- Demonstrates the use of:
-
- 1) 'MaskCopy'
- 2) 'Init'
-
- Date of Origin: 17/04/96
- Original Author: Andrew Hutchison
- Modification History:
-
- Date Person Change
- ----------------------------------------------------
- 17/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 Mask;
-
- uses
- Forms,
- UMask in 'UMask.pas' {Form1};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
-