38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef EmpaquetadorH
|
|
#define EmpaquetadorH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Dialogs.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TMemo *Memo1;
|
|
TMemo *Memo2;
|
|
TEdit *Edit1;
|
|
TEdit *Edit2;
|
|
TEdit *Edit3;
|
|
TEdit *Edit4;
|
|
TButton *Button1;
|
|
TOpenDialog *OpenDialog1;
|
|
TSaveDialog *SaveDialog1;
|
|
void __fastcall Edit1DblClick(TObject *Sender);
|
|
void __fastcall Edit4DblClick(TObject *Sender);
|
|
void __fastcall Memo1DblClick(TObject *Sender);
|
|
void __fastcall Memo2DblClick(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
private: // User declarations
|
|
void __fastcall Anexa( FILE *out, AnsiString FICH );
|
|
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|