psw.~pas
来自「本软件应用了Delphi提供的BDE数据库引擎。本系统为政教管理系统」· ~PAS 代码 · 共 43 行
~PAS
43 行
unit psw;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons;
type
TPasswordDlg = class(TForm)
Label1: TLabel;
Password: TEdit;
OKBtn: TButton;
CancelBtn: TButton;
procedure OKBtnClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
PasswordDlg: TPasswordDlg;
implementation
{$R *.dfm}
procedure TPasswordDlg.OKBtnClick(Sender: TObject);
var pws:string;
begin
pws:='2008';
if passworddlg.Password.Text=pws then
begin
modalresult:=mrok;
end
else
begin
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?