⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fr_restr.pas

📁 不错的报表工具
💻 PAS
字号:

{******************************************}
{                                          }
{             FastReport v2.5              }
{           Restrictions editor            }
{                                          }
{Copyright(c) 1998-2003 by FastReports Inc.}
{                                          }
{******************************************}

unit FR_Restr;

interface

{$I FR.inc}

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls;

type
  TfrRestrictionsForm = class(TForm)
    GroupBox1: TGroupBox;
    CB1: TCheckBox;
    CB2: TCheckBox;
    Cb3: TCheckBox;
    CB4: TCheckBox;
    CB5: TCheckBox;
    CB6: TCheckBox;
    CB7: TCheckBox;
    Button1: TButton;
    Button2: TButton;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
    procedure Localize;
  public
    { Public declarations }
  end;


implementation

uses FR_Const, FR_Utils;

{$R *.DFM}


procedure TfrRestrictionsForm.Localize;
begin
  Caption := frLoadStr(frRes + 260);
  CB1.Caption := frLoadStr(frRes + 261);
  CB2.Caption := frLoadStr(frRes + 262);
  CB3.Caption := frLoadStr(frRes + 263);
  CB4.Caption := frLoadStr(frRes + 264);
  CB5.Caption := frLoadStr(frRes + 265);
  CB6.Caption := frLoadStr(frRes + 266);
  CB7.Caption := frLoadStr(frRes + 267);
  Button1.Caption := frLoadStr(SOk);
  Button2.Caption := frLoadStr(SCancel);
end;

procedure TfrRestrictionsForm.FormCreate(Sender: TObject);
begin
  Localize;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -