forked from efecanicoz/lad_configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit4.h
31 lines (30 loc) · 1.05 KB
/
Unit4.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//---------------------------------------------------------------------------
#ifndef Unit4H
#define Unit4H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.Mask.hpp>
//---------------------------------------------------------------------------
class TPassInp : public TForm
{
__published: // IDE-managed Components
TMaskEdit *pass;
TButton *Button1;
TButton *Button2;
void __fastcall Button2Click(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
void __fastcall passKeyPress(TObject *Sender, System::WideChar &Key);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TPassInp(TComponent* Owner);
bool Result;
UnicodeString Password;
};
//---------------------------------------------------------------------------
extern PACKAGE TPassInp *PassInp;
//---------------------------------------------------------------------------
#endif