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

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