-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelectGrid.h
30 lines (29 loc) · 1.08 KB
/
SelectGrid.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
//---------------------------------------------------------------------------
#ifndef SelectGridH
#define SelectGridH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class Tfrm_selectgrid : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TComboBox *cb_lba2grids;
TComboBox *cb_lba1grids;
TButton *bt_selectgrid;
TButton *bt_closegrid;
void __fastcall bt_closegridClick(TObject *Sender);
void __fastcall bt_selectgridClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall Tfrm_selectgrid(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE Tfrm_selectgrid *frm_selectgrid;
//---------------------------------------------------------------------------
#endif