home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / imagelib / uabout.pa_ / uabout.pa
Text File  |  1995-11-19  |  1KB  |  66 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 30 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. unit Uabout;
  17.  
  18. interface
  19.  
  20. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  21.      Buttons, ExtCtrls, sysutils, Tmultip;
  22.  
  23. type
  24.   TAboutBox = class(TForm)
  25.     Panel1: TPanel;
  26.     OKButton: TBitBtn;
  27.     ProductName: TLabel;
  28.     Version: TLabel;
  29.     Copyright: TLabel;
  30.     Label1: TLabel;
  31.     Label2: TLabel;
  32.     Label4: TLabel;
  33.     Label5: TLabel;
  34.     Image1: TPMultiImage;
  35.     Panel2: TPanel;
  36.     Label3: TLabel;
  37.     Label6: TLabel;
  38.     Label7: TLabel;
  39.     Label13: TLabel;
  40.     ListBox1: TListBox;
  41.     Label8: TLabel;
  42.     Label9: TLabel;
  43.     Label10: TLabel;
  44.   private
  45.     { Private declarations }
  46.   public
  47.     { Public declarations }
  48.   end;
  49.  
  50. var
  51.   AboutBox: TAboutBox;
  52.  
  53. implementation
  54.  
  55. {$R *.DFM}
  56.  
  57.  
  58. end.
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.