forked from crypto2011/IDR
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExit.cpp
More file actions
29 lines (24 loc) · 1014 Bytes
/
Exit.cpp
File metadata and controls
29 lines (24 loc) · 1014 Bytes
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
//---------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Exit.h"
#include "Misc.h"
//---------------------------------------------------------------------
#pragma resource "*.dfm"
TFExit_11011981 *FExit_11011981;
//---------------------------------------------------------------------
__fastcall TFExit_11011981::TFExit_11011981(TComponent *AOwner)
: TForm(AOwner) {}
//---------------------------------------------------------------------
void __fastcall TFExit_11011981::OKBtnClick(TObject *Sender) {
ModalResult = mrOk;
}
//---------------------------------------------------------------------------
void __fastcall TFExit_11011981::CancelBtnClick(TObject *Sender) {
ModalResult = mrCancel;
}
//---------------------------------------------------------------------------
void __fastcall TFExit_11011981::FormCreate(TObject *Sender) {
ScaleForm(this);
}
//---------------------------------------------------------------------------