?? unit5.h
字號:
//----------------------------------------------------------------------------
#ifndef Unit5H
#define Unit5H
//----------------------------------------------------------------------------
#include <Buttons.hpp>
#include <StdCtrls.hpp>
#include <Controls.hpp>
#include <Forms.hpp>
#include <Graphics.hpp>
#include <Classes.hpp>
#include <SysUtils.hpp>
#include <Windows.hpp>
#include <System.hpp>
#include <Db.hpp>
#include <DBCtrls.hpp>
#include <DBTables.hpp>
#include <Mask.hpp>
//----------------------------------------------------------------------------
class TPasswordDlg : public TForm
{
__published:
TLabel *Label1;
TEdit *Password;
TButton *OKBtn;
TButton *CancelBtn;
TLabel *Label2;
TDBEdit *DBEdit1;
TLabel *Label3;
TDBEdit *DBEdit2;
TDataSource *DataSource1;
TTable *Table1;
TStringField *Table1User;
TStringField *Table1Level;
TStringField *Table1Pass;
TStringField *Table1Station;
TStringField *Table1Service;
TStringField *Table1ChaoBiao;
TStringField *Table1ShenHe;
void __fastcall OKBtnClick(TObject *Sender);
void __fastcall FormActivate(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall CancelBtnClick(TObject *Sender);
private:
int count;
public:
virtual __fastcall TPasswordDlg(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern PACKAGE TPasswordDlg *PasswordDlg;
//----------------------------------------------------------------------------
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -