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

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