-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUFormAux.h
26 lines (25 loc) · 932 Bytes
/
UFormAux.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
//---------------------------------------------------------------------------
#ifndef UFormAuxH
#define UFormAuxH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TDatos : public TForm
{
__published: // IDE-managed Components
TButton *ButtonOK;
TButton *ButtonCancel;
TComboBox *ComboBox1;
void __fastcall ButtonCancelClick(TObject *Sender);
void __fastcall ButtonOKClick(TObject *Sender);
private: // User declarations
public: int num;// User declarations
__fastcall TDatos(TComponent* Owner);
};
//---------------------------------------------------------------------------
//extern PACKAGE TDatos *Datos;
//---------------------------------------------------------------------------
#endif