home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
imagelib
/
babout.pa_
/
babout.pa
Wrap
Text File
|
1995-09-24
|
1KB
|
51 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 2.2.1 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 Babout;
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;
Panel2: TPanel;
Label6: TLabel;
MultiImage1: TPMultiImage;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
end.