-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmMain.h
More file actions
35 lines (34 loc) · 1.18 KB
/
frmMain.h
File metadata and controls
35 lines (34 loc) · 1.18 KB
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
//---------------------------------------------------------------------------
#ifndef frmMainH
#define frmMainH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published: // IDE-managed Components
TEdit *Edit1;
TEdit *Edit2;
TLabel *Label1;
TLabel *Label2;
TButton *Button1;
TLabel *Label3;
TEdit *Edit3;
TCheckBox *CheckBox1;
TButton *Button2;
void __fastcall Button1Click(TObject *Sender);
void __fastcall StartThread();
void __fastcall Button2Click(TObject *Sender);
void __fastcall CreateParams(Controls::TCreateParams &Params);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
void __fastcall AppException(TObject *Sender, Exception *E);
};
//---------------------------------------------------------------------------
extern PACKAGE TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif