-
Notifications
You must be signed in to change notification settings - Fork 0
/
xuap.~cp
27 lines (25 loc) · 920 Bytes
/
xuap.~cp
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
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "xuap.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TxuapForm *xuapForm;
//---------------------------------------------------------------------------
__fastcall TxuapForm::TxuapForm(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TxuapForm::closeBtnClick(TObject *Sender)
{
xuapForm->Close();
}
//---------------------------------------------------------------------------
void __fastcall TxuapForm::UpDown1Changing(TObject *Sender,
bool &AllowChange)
{
startPointEdit->Text=IntToStr(UpDown1->Position);
}
//---------------------------------------------------------------------------