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

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