login.h
来自「企业员工考勤和工资管理系统」· C头文件 代码 · 共 45 行
H
45 行
//---------------------------------------------------------------------------
#ifndef LoginH
#define LoginH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
#include <ADODB.hpp>
#include <Db.hpp>
//---------------------------------------------------------------------------
class TFormLogin : public TForm
{
__published: // IDE-managed Components
TImage *Image1;
TLabel *Label1;
TLabel *Label2;
TBitBtn *BitBtnOk;
TBitBtn *BitBtnCancel;
TEdit *EditMima;
TComboBox *ComboBox1;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall FormShow(TObject *Sender);
void __fastcall ComboBox1Change(TObject *Sender);
void __fastcall BitBtnOkClick(TObject *Sender);
void __fastcall BitBtnCancelClick(TObject *Sender);
private: // User declarations
TADOQuery *pLogin;
public: // User declarations
__fastcall TFormLogin(TComponent* Owner);
int nResult;
AnsiString sYhmc,sQuanxian;
TADOQuery *pUser;
};
//---------------------------------------------------------------------------
extern PACKAGE TFormLogin *FormLogin;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?