?? rpformstatus.pas
字號:
{*************************************************************************}
{ Rave Reports version 5.0 }
{ Copyright (c), 1995-2002, Nevrona Designs, all rights reserved }
{*************************************************************************}
unit RpFormStatus;
interface
uses
Windows, Messages, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons,
SysUtils, Classes, RpSystem, RpDefine;
type
TRpStatusForm = class(TForm)
CancelButton: TButton;
StatusLabel: TLabel;
procedure CancelButtonClick(Sender: TObject);
private
public
ReportSystem: TRvSystem;
FormClosed: boolean;
end;
var
RpStatusForm: TRpStatusForm;
implementation
{$R *.dfm}
procedure TRpStatusForm.CancelButtonClick(Sender: TObject);
begin
with Sender as TButton do begin
if ModalResult = mrCancel then begin
ReportSystem.BaseReport.Abort;
end else begin
FormClosed := true;
end; { if }
end; { with }
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -