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

📄 c_password.pas

📁 立方酒店管理系统
💻 PAS
字号:
unit C_PassWord;

interface

uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  Buttons;

type
  TPasswordDlg = class(TForm)
    Label1: TLabel;
    Password: TEdit;
    OKBtn: TButton;
    CancelBtn: TButton;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  PasswordDlg: TPasswordDlg;

function IfRight: Boolean;

implementation

uses C_JfData;

{$R *.dfm}

function IfRight: Boolean;
begin
  PasswordDlg := TPasswordDlg.Create(Application);
  try
    with PasswordDlg do
    begin
      ShowModal;
      Result := False;
      if ModalResult = mrOK then
        if JfData.IfPass(Password.Text) then
          Result := True;
    end;
  finally
    PasswordDlg.Free;
  end;
end;

end.
 

⌨️ 快捷键说明

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