home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
ruzne
/
zcd30120.exe
/
Demo
/
v11_3.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-04
|
798b
|
44 lines
unit V11_3;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, Animate, ExtCtrls;
type
TForm1 = class(TForm)
ScrollBox1: TScrollBox;
Image1: TImage;
zColorBtn1: TzColorBtn;
procedure zColorBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.zColorBtn1Click(Sender: TObject);
Var
T : TzDeskTop;
begin
T:=TzDesktop.Create;
Image1.Width:=T.Width*2;
Image1.Height:=T.height*2;
Hide;
Application.processmessages;
Image1.Canvas.CopyRect(Image1.ClientRect,T,Rect(0,0,T.Width,T.height));
Show;
Application.processmessages;
T.free;
end;
end.