📄 frxpassw.pas
字号:
{******************************************}
{ }
{ FastReport v4.0 }
{ Password form }
{ }
{ Copyright (c) 1998-2008 }
{ by Alexander Tzyganenko, }
{ Fast Reports Inc. }
{ }
{******************************************}
unit frxPassw;
interface
{$I frx.inc}
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls
{$IFDEF Delphi6}
, Variants
{$ENDIF};
type
TfrxPasswordForm = class(TForm)
OkB: TButton;
CancelB: TButton;
PasswordE: TEdit;
PasswordL: TLabel;
Image1: TImage;
procedure FormCreate(Sender: TObject);
private
public
end;
implementation
{$R *.dfm}
uses frxRes;
procedure TfrxPasswordForm.FormCreate(Sender: TObject);
begin
Caption := frxGet(5000);
PasswordL.Caption := frxGet(5001);
OkB.Caption := frxGet(1);
CancelB.Caption := frxGet(2);
if UseRightToLeftAlignment then
FlipChildren(True);
end;
end.
//
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -