-
Notifications
You must be signed in to change notification settings - Fork 0
/
purchase.h
57 lines (56 loc) · 1.94 KB
/
purchase.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
//---------------------------------------------------------------------------
#ifndef purchaseH
#define purchaseH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ComCtrls.hpp>
#include <Vcl.ExtCtrls.hpp>
#include "frxClass.hpp"
#include "frxDBSet.hpp"
#include <Data.DB.hpp>
#include <Data.Win.ADODB.hpp>
//---------------------------------------------------------------------------
class TForm2 : public TForm
{
__published: // IDE-managed Components
TComboBox *ComboBox1;
TComboBox *ComboBox2;
TButton *takeseat;
TButton *search_ticket;
TLabel *Label3;
TLabel *Label4;
TLabel *caption_ticket_amount;
TLabel *number_ticket_amount;
TButton *search_flight;
TPanel *Panel3;
TRadioButton *RadioButton3;
TRadioButton *RadioButton4;
TRadioButton *RadioButton5;
TButton *Button1;
TfrxReport *frxReport1;
TfrxDBDataset *frxDBDataset1;
TComboBox *flights;
void __fastcall search_ticketClick(TObject *Sender);
void __fastcall ComboBox1Select(TObject *Sender);
void __fastcall search_flightClick(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 Button1Click(TObject *Sender);
void __fastcall takeseatClick(TObject *Sender);
void __fastcall flightsSelect(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm2(TComponent* Owner);
String n_fl;
String ticket_type;
};
//---------------------------------------------------------------------------
extern PACKAGE TForm2 *Form2;
//---------------------------------------------------------------------------
#endif