42 lines
1.5 KiB
C++
42 lines
1.5 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef eFijarVencimientosH
|
|
#define eFijarVencimientosH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Buttons.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <Grids.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TfijarVencimientos : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TDateTimePicker *DateTimePicker1;
|
|
TLabel *Label2;
|
|
TUpDown *UpDown1;
|
|
TEdit *Edit1;
|
|
TStringGrid *StringGrid1;
|
|
TBitBtn *BitBtn1;
|
|
TBitBtn *BitBtn2;
|
|
TLabel *Label3;
|
|
TEdit *Edit2;
|
|
TUpDown *UpDown2;
|
|
void __fastcall BitBtn2Click(TObject *Sender);
|
|
void __fastcall DateTimePicker1Change(TObject *Sender);
|
|
void __fastcall Edit1Change(TObject *Sender);
|
|
void __fastcall Edit2Change(TObject *Sender);
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TfijarVencimientos(TComponent* Owner);
|
|
void __fastcall ReCalcularVencimientos(void);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfijarVencimientos *fijarVencimientos;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|