home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
ruzne
/
zcd30120.exe
/
Demo
/
V11_2.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-04
|
952b
|
44 lines
{
A unit for V110_2.DPR, a testprogram for:
TzTrayIcon
TzShowApp
TzTitleBar
The ZieglerCollection one (TM)
Version 1,10
(C) Copyright 1997 By ZieglerSoft, all rights reserved
}
unit V11_2;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Mystd;
type
TForm1 = class(TForm)
zShowApp1: TzShowApp;
zTrayIcon1: TzTrayIcon;
zTitleBar1: TzTitleBar;
procedure zTrayIcon1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.zTrayIcon1Click(Sender: TObject);
begin
Close;
end;
end.