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

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