42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef GNumH
|
|
#define GNumH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TComboBox *ComboBox1;
|
|
TLabel *Label1;
|
|
TComboBox *ComboBox2;
|
|
TComboBox *ComboBox3;
|
|
TComboBox *ComboBox4;
|
|
TComboBox *ComboBox5;
|
|
TComboBox *ComboBox6;
|
|
TCheckBox *CheckBox1;
|
|
TCheckBox *CheckBox2;
|
|
TCheckBox *CheckBox3;
|
|
TCheckBox *CheckBox4;
|
|
TCheckBox *CheckBox5;
|
|
TButton *Button1;
|
|
TLabel *Label2;
|
|
TLabel *Label3;
|
|
TComboBox *mismaDecena;
|
|
TLabel *Label4;
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
bool __fastcall cumpleRestoCondiciones(int V1, int V2, int V3, int V4, int V5, int V6);
|
|
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|