42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef repartidoresH
|
|
#define repartidoresH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\DBTables.hpp>
|
|
#include <vcl\DB.hpp>
|
|
#include <vcl\DBCtrls.hpp>
|
|
#include <vcl\Mask.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm5 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TLabel *Label3;
|
|
TPanel *Panel2;
|
|
TLabel *Label2;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TButton *Button3;
|
|
TButton *Button4;
|
|
TTable *Table1;
|
|
TDataSource *DataSource1;
|
|
TDBEdit *DBEdit1;
|
|
TPanel *Panel3;
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button3Click(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm5(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm5 *Form5;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|