forked from efecanicoz/lad_configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unit9.h
34 lines (33 loc) · 1.08 KB
/
Unit9.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
//---------------------------------------------------------------------------
#ifndef Unit9H
#define Unit9H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "cspin.h"
//---------------------------------------------------------------------------
class TForm9 : public TForm
{
__published: // IDE-managed Components
TComboBox *counterDDL;
TLabel *label_counter;
TLabel *label_reset;
TCSpinEdit *input_reset;
TButton *Button1;
TButton *Button2;
TCheckBox *chkWithTimer;
void __fastcall Button1Click(TObject *Sender);
void __fastcall Button2Click(TObject *Sender);
void __fastcall chkWithTimerClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm9(TComponent* Owner);
UnicodeString result;
int reset_val;
};
//---------------------------------------------------------------------------
extern PACKAGE TForm9 *Form9;
//---------------------------------------------------------------------------
#endif