rmd_qblnk.pas

来自「胜天进销存源码,国产优秀的进销存」· PAS 代码 · 共 58 行

PAS
58
字号

{*****************************************}
{                                         }
{ Report Machine v2.0 - Data storage      }
{      Query Builder Link Options         }
{                                         }
{*****************************************}

unit RMD_Qblnk;

interface

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

type
  TRMDFormQBLink = class(TForm)
    RadioOpt: TRadioGroup;
    RadioType: TRadioGroup;
    BtnOk: TButton;
    BtnCancel: TButton;
    txtTable1: TStaticText;
    txtTable2: TStaticText;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    txtCol1: TStaticText;
    Label4: TLabel;
    txtCol2: TStaticText;
    procedure FormCreate(Sender: TObject);
  private
  	procedure Localize;
  end;

implementation

uses RM_Const, RM_Utils;

{$R *.DFM}

procedure TRMDFormQBLink.Localize;
begin
	Font.Name := RMLoadStr(SRMDefaultFontName);
  Font.Size := StrToInt(RMLoadStr(SRMDefaultFontSize));
  Font.Charset := StrToInt(RMLoadStr(SCharset));

  btnOk.Caption := RMLoadStr(SOK);
  btnCancel.Caption := RMLoadStr(SCancel);
end;

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

end.

⌨️ 快捷键说明

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