This repository was archived by the owner on Oct 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventsUnit.h
More file actions
63 lines (61 loc) · 2.13 KB
/
EventsUnit.h
File metadata and controls
63 lines (61 loc) · 2.13 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
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
//---------------------------------------------------------------------------
#ifndef EventsUnitH
#define EventsUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Data.DB.hpp>
#include <Vcl.DBGrids.hpp>
#include <Vcl.Grids.hpp>
#include <Vcl.Buttons.hpp>
#include <Vcl.DBCtrls.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <FireDAC.Comp.Client.hpp>
#include <FireDAC.Phys.hpp>
#include <FireDAC.Phys.Intf.hpp>
#include <FireDAC.Phys.ODBC.hpp>
#include <FireDAC.Phys.ODBCDef.hpp>
#include <FireDAC.Stan.Async.hpp>
#include <FireDAC.Stan.Def.hpp>
#include <FireDAC.Stan.Error.hpp>
#include <FireDAC.Stan.Intf.hpp>
#include <FireDAC.Stan.Option.hpp>
#include <FireDAC.Stan.Pool.hpp>
#include <FireDAC.UI.Intf.hpp>
#include <FireDAC.VCLUI.Wait.hpp>
#include <FireDAC.Comp.DataSet.hpp>
#include <FireDAC.DApt.hpp>
#include <FireDAC.DApt.Intf.hpp>
#include <FireDAC.DatS.hpp>
#include <FireDAC.Stan.Param.hpp>
#include <Vcl.Imaging.pngimage.hpp>
//---------------------------------------------------------------------------
class TEventsForm : public TForm
{
__published: // IDE-managed Components
TDBGrid *EventsDBGrid;
TDBNavigator *EventsDBNavigator;
TFDConnection *SpecialGuestsConnection;
TDataSource *EventsDataSource;
TFDQuery *EventsQuery;
TImage *MainBanner;
TLabel *EventsLabel;
TButton *SpecialGuestsButton;
TButton *GuestTypesButton;
TButton *EventTypesButton;
TButton *EventGuestAttendeesButton;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall GuestsButtonClick(TObject *Sender);
void __fastcall GuestTypesButtonClick(TObject *Sender);
void __fastcall EventTypesButtonClick(TObject *Sender);
void __fastcall EventGuestAttendeesButtonClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TEventsForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TEventsForm *EventsForm;
//---------------------------------------------------------------------------
#endif