-
Notifications
You must be signed in to change notification settings - Fork 2
/
RegisterM.h
39 lines (39 loc) · 1.28 KB
/
RegisterM.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
36
37
38
39
//---------------------------------------------------------------------------
#ifndef RegisterMFormH
#define RegisterMFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "RzButton.hpp"
#include "RzEdit.hpp"
#include "RzLabel.hpp"
#include "RzPanel.hpp"
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TRegisterMFormClass : public TForm
{
__published: // IDE-managed Components
TRzPanel *RegisterPanel;
TRzLabel *RzLabel6;
TRzPanel *RzPanel1;
TRzLabel *RegisterLabel;
TImage *RegisterImage;
TImage *CloseImage;
TRzLabel *CloseLabel;
TRzButton *ApplyButton;
TRzButton *HelpButton;
TRzMemo *RegMemo;
void __fastcall ApplyButtonClick(TObject *Sender);
void __fastcall HelpButtonClick(TObject *Sender);
void __fastcall CloseLabelClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TRegisterMFormClass(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TRegisterMFormClass *RegisterMFormClass;
//---------------------------------------------------------------------------
#endif