home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
nastroje
/
d5
/
MFTP.ZIP
/
demo
/
ftppanel
/
confirm.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2001-02-24
|
630b
|
39 lines
unit confirm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
TfrmConfirm = class(TForm)
Image1: TImage;
Label1: TLabel;
Button1: TButton;
Button2: TButton;
Button3: TButton;
procedure ButtonClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmConfirm: TfrmConfirm;
implementation
uses main;
{$R *.DFM}
procedure TfrmConfirm.ButtonClick(Sender: TObject);
begin
frmMain.Tag := (Sender as TButton).Tag;
Close;
end;
end.