-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBPathUnit.h
33 lines (32 loc) · 1.15 KB
/
DBPathUnit.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
//---------------------------------------------------------------------------
#ifndef DBPathUnitH
#define DBPathUnitH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TDBPathForm : public TForm
{
__published: // IDE-managed Components
TLabeledEdit *DBPathEdit;
TBitBtn *BrowseBtn;
TBitBtn *OkBtn;
TBitBtn *CancelBtn;
TOpenDialog *OpenDialog1;
TCheckBox *CheckDBConnection;
void __fastcall BrowseBtnClick(TObject *Sender);
void __fastcall OkBtnClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TDBPathForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDBPathForm *DBPathForm;
//---------------------------------------------------------------------------
#endif