38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef TComprobadorActividadH
|
|
#define TComprobadorActividadH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Grids.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TcomprobadorActividad : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TStringGrid *StringGrid1;
|
|
TEdit *Edit1;
|
|
TPaintBox *PaintBox1;
|
|
TRichEdit *RichEdit1;
|
|
TLabel *Label2;
|
|
TEdit *edMin;
|
|
TUpDown *UpDown1;
|
|
TCheckBox *CheckBox1;
|
|
TLabel *Label3;
|
|
TEdit *edMax;
|
|
TUpDown *UpDown2;
|
|
TPanel *Panel1;
|
|
TLabel *Label4;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TcomprobadorActividad(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TcomprobadorActividad *comprobadorActividad;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|