home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / imagelib / babout.pa_ / babout.pa
Text File  |  1995-09-24  |  1KB  |  51 lines

  1. {Part of Imagelib VCL/DLL Library.
  2. Written by Jan Dekkers and Kevin Adams (c) 1995. If you are a non
  3. registered client, you may use or alter this demo only for evaluation
  4. purposes.
  5.  
  6. Uses ImageLib 2.2.1 Changed the callback to a function instead of a
  7. procedure to let the user cancel out. Added:
  8.  
  9. Changed callback in version 2.21 to a function with cdecl.
  10. using the C calling convention.
  11.  
  12. scrolling text images
  13. Cut, Copy and Paste to/from the clipboard
  14. Printing bitmaps}
  15.  
  16.  
  17. unit Babout;
  18.  
  19. interface
  20.  
  21. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  22.      Buttons, ExtCtrls, sysutils, Tmultip;
  23.  
  24. type
  25.   TAboutBox = class(TForm)
  26.     Panel1: TPanel;
  27.     OKButton: TBitBtn;
  28.     ProductName: TLabel;
  29.     Version: TLabel;
  30.     Copyright: TLabel;
  31.     Label1: TLabel;
  32.     Panel2: TPanel;
  33.     Label6: TLabel;
  34.     MultiImage1: TPMultiImage;
  35.   private
  36.     { Private declarations }
  37.   public
  38.     { Public declarations }
  39.   end;
  40.  
  41. var
  42.   AboutBox: TAboutBox;
  43.  
  44. implementation
  45.  
  46. {$R *.DFM}
  47.  
  48.  
  49. end.
  50.  
  51.