home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 2001 December (DVD)
/
VPR0112A.ISO
/
OLS
/
WAVKNIFE
/
wavknife.lzh
/
src.lzh
/
CUTFRM.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-11-25
|
565b
|
37 lines
unit cutfrm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, ExtCtrls;
type
TForm4 = class(TForm)
Panel1: TPanel;
Button1: TButton;
ProgressBar1: TProgressBar;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private 宣言 }
public
{ Public 宣言 }
end;
var
Form4: TForm4;
implementation
uses wkfrm;
{$R *.DFM}
procedure TForm4.Button1Click(Sender: TObject);
begin
Form1.breakflag:=-1;
end;
end.