home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOKAN 17
/
DOKAN17.iso
/
Progs
/
Pjv03dde.zip
/
PJV03DDE
/
SRCCODE
/
SAMPLE3
/
JVIEWU2.PAS
< prev
Wrap
Pascal/Delphi Source File
|
1999-06-18
|
921b
|
48 lines
unit jviewu2;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls;
type
TForm2 = class(TForm)
Label1: TLabel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2 : TForm2;
bAbort : boolean;
implementation
{$R *.DFM}
// -----------------------------------------------------------------------
procedure TForm2.Button1Click(Sender: TObject);
begin
bAbort := true;
end;
// -----------------------------------------------------------------------
procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
bAbort := true;
end;
// -----------------------------------------------------------------------
end.