📄 login.h
字号:
//---------------------------------------------------------------------------
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -