First commit 11/12/1999

This commit is contained in:
2021-09-12 22:02:01 +02:00
commit 2f76ae2538
139 changed files with 8696 additions and 0 deletions

27
FormularioREUSABLE.h Normal file
View File

@ -0,0 +1,27 @@
//---------------------------------------------------------------------------
#ifndef FormularioREUSABLEH
#define FormularioREUSABLEH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "CoolForm.hpp"
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TFormREUSABLE : public TForm
{
__published: // IDE-managed Components
TCoolForm *CoolForm1;
TButton *Button1;
void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFormREUSABLE(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormREUSABLE *FormREUSABLE;
//---------------------------------------------------------------------------
#endif