loginunit.h
来自「指纹门禁机管理系统」· C头文件 代码 · 共 39 行
H
39 行
//---------------------------------------------------------------------------
#ifndef SystemLoginUnitH
#define SystemLoginUnitH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "BaseInputUnit.h"
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
#include "DBAccessUnit.h"
//---------------------------------------------------------------------------
class TSystemLoginFrm : public TBaseDataInputFrm
{
__published: // IDE-managed Components
TLabel *Label1;
TEdit *edtEmpID;
TLabel *Label2;
TEdit *edtPassword;
TPanel *Panel2;
TImage *imUserPic;
void __fastcall bbtnOKClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private:
TDBAccess aDBAccess;
UserInfoEx_T LoginUserInfo;
public:
bool IsLoginPass(AnsiString iEmpID,AnsiString iEmpPwd);
__fastcall TSystemLoginFrm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSystemLoginFrm *SystemLoginFrm;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?