-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd.h
68 lines (67 loc) · 2.08 KB
/
add.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//---------------------------------------------------------------------------
#ifndef addH
#define addH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ComCtrls.hpp>
#include <Vcl.ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TForm4 : public TForm
{
__published: // IDE-managed Components
TEdit *Edit1;
TEdit *Edit2;
TEdit *Edit3;
TDateTimePicker *DateTimePicker1;
TDateTimePicker *DateTimePicker2;
TPanel *Panel1;
TRadioButton *RadioButton1;
TRadioButton *RadioButton2;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *Label5;
TComboBox *ComboBox1;
TEdit *Edit4;
TEdit *Edit5;
TLabel *Label6;
TLabel *Label7;
TLabel *Label8;
TButton *Button1;
TPanel *Panel2;
TRadioButton *RadioButton3;
TRadioButton *RadioButton4;
TRadioButton *RadioButton5;
TLabel *Label9;
TLabel *Label10;
TComboBox *ComboBox2;
TComboBox *ComboBox3;
TLabel *Label11;
TComboBox *ComboBox4;
TLabel *Label12;
TCheckBox *CheckBox1;
TCheckBox *CheckBox2;
void __fastcall FormHide(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall ComboBox2Select(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
void __fastcall RadioButton5Click(TObject *Sender);
void __fastcall RadioButton4Click(TObject *Sender);
void __fastcall RadioButton3Click(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall ComboBox4Select(TObject *Sender);
void __fastcall CheckBox1Click(TObject *Sender);
void __fastcall CheckBox2Click(TObject *Sender);
private: // User declarations
String ticket_type;
public: // User declarations
__fastcall TForm4(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm4 *Form4;
//---------------------------------------------------------------------------
#endif