-
Notifications
You must be signed in to change notification settings - Fork 2
/
RegisterM.cpp
32 lines (32 loc) · 1.15 KB
/
RegisterM.cpp
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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "RegisterMForm.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "RzButton"
#pragma link "RzEdit"
#pragma link "RzLabel"
#pragma link "RzPanel"
#pragma resource "*.dfm"
TRegisterMForm *RegisterMForm;
//---------------------------------------------------------------------------
__fastcall TRegisterMFormClass::TRegisterMFormClass(TComponent* Owner) : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TRegisterMFormClass::ApplyButtonClick(TObject *Sender)
{
RegMemo->CopyToClipboard();
}
//---------------------------------------------------------------------------
void __fastcall TRegisterMFormClass::HelpButtonClick(TObject *Sender)
{
Application->HelpJump("register_email");
}
//---------------------------------------------------------------------------
void __fastcall TRegisterMFormClass::CloseLabelClick(TObject *Sender)
{
Close();
}
//---------------------------------------------------------------------------