| 2218 |
sbetterm |
1 |
//---------------------------------------------------------------------------
|
|
|
2 |
|
|
|
3 |
#ifndef LoginH
|
|
|
4 |
#define LoginH
|
|
|
5 |
//---------------------------------------------------------------------------
|
|
|
6 |
#include <Classes.hpp>
|
|
|
7 |
#include <Controls.hpp>
|
|
|
8 |
#include <StdCtrls.hpp>
|
|
|
9 |
#include <Forms.hpp>
|
|
|
10 |
#include <Buttons.hpp>
|
|
|
11 |
#include <ExtCtrls.hpp>
|
|
|
12 |
//---------------------------------------------------------------------------
|
|
|
13 |
class TLoginForm : public TForm
|
|
|
14 |
{
|
|
|
15 |
__published: // IDE-managed Components
|
|
|
16 |
TEdit *UsernameEdit;
|
|
|
17 |
TLabel *Label1;
|
|
|
18 |
TLabel *Label2;
|
|
|
19 |
TEdit *PasswordEdit;
|
|
|
20 |
TBitBtn *LoginOKBtn;
|
|
|
21 |
TBitBtn *BitBtn1;
|
|
|
22 |
TPanel *Panel1;
|
| 2222 |
sbetterm |
23 |
TEdit *DatabaseEdit;
|
|
|
24 |
TLabel *Label3;
|
| 2218 |
sbetterm |
25 |
void __fastcall FormShow(TObject *Sender);
|
|
|
26 |
void __fastcall LoginOKBtnClick(TObject *Sender);
|
|
|
27 |
private: // User declarations
|
|
|
28 |
public: // User declarations
|
|
|
29 |
__fastcall TLoginForm(TComponent* Owner);
|
|
|
30 |
};
|
|
|
31 |
//---------------------------------------------------------------------------
|
|
|
32 |
extern PACKAGE TLoginForm *LoginForm;
|
|
|
33 |
//---------------------------------------------------------------------------
|
|
|
34 |
#endif
|