-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit1.h
47 lines (45 loc) · 1.36 KB
/
Unit1.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.Dialogs.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TEdit *Edit1;
TLabel *Label1;
TLabel *Label2;
TButton *Button1;
TMemo *Memo2;
TLabel *Label3;
TLabel *Label4;
TEdit *Edit2;
TLabel *Label5;
TLabel *Label6;
TLabel *Label7;
TMemo *Memo1;
TButton *Button2;
TLabel *Label8;
TEdit *Edit3;
TLabel *Label9;
TLabel *Label10;
TLabel *Label11;
TEdit *Edit4;
void __fastcall Button1Click(TObject *Sender);
void __fastcall Edit1KeyPress(TObject *Sender, System::WideChar &Key);
void __fastcall Button2Click(TObject *Sender);
void __fastcall Edit1Change(TObject *Sender);
private: // User declarations
String workNumber(String number, String type);
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif