home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
imagelib
/
uabout.pa_
/
uabout.pa
Wrap
Text File
|
1995-11-19
|
1KB
|
66 lines
{Part of Imagelib VCL/DLL Library.
Written by Jan Dekkers and Kevin Adams (c) 1995. If you are a non
registered client, you may use or alter this demo only for evaluation
purposes.
Uses ImageLib 30 Changed the callback to a function instead of a
procedure to let the user cancel out. Added:
Changed callback in version 2.21 to a function with cdecl.
using the C calling convention.
scrolling text images
Cut, Copy and Paste to/from the clipboard
Printing bitmaps}
unit Uabout;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, sysutils, Tmultip;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TBitBtn;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Label1: TLabel;
Label2: TLabel;
Label4: TLabel;
Label5: TLabel;
Image1: TPMultiImage;
Panel2: TPanel;
Label3: TLabel;
Label6: TLabel;
Label7: TLabel;
Label13: TLabel;
ListBox1: TListBox;
Label8: TLabel;
Label9: TLabel;
Label10: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
end.