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

  1. {  Project ColRep.DPR Delphi 2.0 Demos
  2.  
  3.   Description:- ColRep.Dpr Project:-
  4.  
  5.    Demonstrates the use of:
  6.  
  7.    1) 'GetColor'
  8.    2) 'GetPalIndex'
  9.    3) 'SetPalIndex'
  10.    4) 'ColorReplace'
  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 ColRep;
  27.  
  28. uses
  29.   Forms,
  30.   UColRep in 'UColRep.pas' {Form1};
  31.  
  32. {$R *.RES}
  33.  
  34. begin
  35.   Application.Initialize;
  36.   Application.CreateForm(TForm1, Form1);
  37.   Application.Run;
  38. end.
  39.