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

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