home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
imagelib
/
bfullscr.pa_
/
bfullscr.pa
Wrap
Text File
|
1995-09-29
|
1KB
|
61 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 Bfullscr;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, Buttons, ExtCtrls, TMultiP;
type
TFullSlide = class(TForm)
MultiImage1: TPMultiImage;
procedure ImageClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FullSlide: TFullSlide;
implementation
{$R *.DFM}
{-------------------------------------------------------------------------}
procedure TFullSlide.FormCreate(Sender: TObject);
begin
SetBounds(0,0,screen.width,screen.height);
MultiImage1.top:=0;
MultiImage1.left:=0;
MultiImage1.height:=screen.height;
MultiImage1.width:=screen.width;
end;
{-------------------------------------------------------------------------}
procedure TFullSlide.ImageClick(Sender: TObject);
begin
fullslide.close;
end;
end.