-
Notifications
You must be signed in to change notification settings - Fork 0
/
Edit.h
35 lines (34 loc) · 1.18 KB
/
Edit.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
//---------------------------------------------------------------------------
#ifndef EditH
#define EditH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TEditForm : public TForm
{
__published: // IDE-managed Components
TEdit *BookNameEdit1;
TEdit *BookAuthorEdit1;
TComboBox *BookGenreComboBox;
TEdit *CustomBookGenre;
TButton *EditButton1;
TLabel *AddNewLabel1;
TLabel *AddNewLabel2;
TLabel *AddNewLabel3;
TLabel *AddNewLabel4;
TLabel *AddNewLabel5;
TButton *DeleteButton1;
void __fastcall FormActivate(TObject *Sender);
void __fastcall DeleteButton1Click(TObject *Sender);
void __fastcall EditButton1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TEditForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TEditForm *EditForm;
//---------------------------------------------------------------------------
#endif