-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathInputDlg.h
More file actions
33 lines (32 loc) · 1.18 KB
/
InputDlg.h
File metadata and controls
33 lines (32 loc) · 1.18 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
//----------------------------------------------------------------------------
#ifndef InputDlgH
#define InputDlgH
//----------------------------------------------------------------------------
#include <vcl\System.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Classes.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\ExtCtrls.hpp>
//----------------------------------------------------------------------------
class TFInputDlg_11011981 : public TForm
{
__published:
TButton *OKBtn;
TButton *CancelBtn;
TLabeledEdit *edtName;
void __fastcall FormShow(TObject *Sender);
void __fastcall edtNameEnter(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private:
public:
virtual __fastcall TFInputDlg_11011981(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern PACKAGE TFInputDlg_11011981 *FInputDlg_11011981;
String __fastcall InputDialogExec(String caption, String labelText, String text);
//----------------------------------------------------------------------------
#endif