First commit ~0,10

This commit is contained in:
2021-09-12 20:57:41 +02:00
commit 024b3774f3
25 changed files with 2855 additions and 0 deletions

41
src/eFijarVencimientos.h Normal file
View File

@ -0,0 +1,41 @@
//---------------------------------------------------------------------------
#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