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

  1. {  Project Store.DPR Delphi 2.0 Demos
  2.  
  3.   Description:- Store.Dpr Project:-
  4.  
  5.    Demonstrates the use of:
  6.  
  7.    1) 'FileName'
  8.    2) 'ImageFormat'
  9.    3) 'ImageCompression'
  10.    4) 'Write Options'
  11.    5) JPG
  12.  
  13.  
  14.    Date of Origin: 18/04/96
  15.    Original Author: Andrew Hutchison
  16.    Modification History:
  17.  
  18.    Date        Person                            Change
  19.    ----------------------------------------------------
  20.    18/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 Store;
  29.  
  30. uses
  31.   Forms,
  32.   UStore in 'UStore.pas' {Form1};
  33.  
  34. {$R *.RES}
  35.  
  36. begin
  37.   Application.Initialize;
  38.   Application.CreateForm(TForm1, Form1);
  39.   Application.Run;
  40. end.
  41.