76 lines
1.8 KiB
C++
76 lines
1.8 KiB
C++
//---------------------------------------------------------------------------
|
|
#ifndef articulosH
|
|
#define articulosH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\DB.hpp>
|
|
#include <vcl\DBTables.hpp>
|
|
#include <vcl\DBCtrls.hpp>
|
|
#include <vcl\Mask.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm2 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *Label1;
|
|
TLabel *Label2;
|
|
TLabel *Label3;
|
|
TPanel *Panel2;
|
|
TPanel *Panel3;
|
|
TLabel *Label4;
|
|
TLabel *Label5;
|
|
TLabel *Label6;
|
|
TLabel *Label7;
|
|
TLabel *Label8;
|
|
TLabel *Label9;
|
|
TLabel *Label10;
|
|
TLabel *Label11;
|
|
TLabel *Label12;
|
|
TLabel *Label13;
|
|
TLabel *Label14;
|
|
TLabel *Label15;
|
|
TLabel *Label16;
|
|
TLabel *Label17;
|
|
TDataSource *DataSource1;
|
|
TTable *Table1;
|
|
TDBEdit *DBEdit1;
|
|
TDBEdit *DBEdit2;
|
|
TDBEdit *DBEdit3;
|
|
TDBEdit *DBEdit4;
|
|
TDBEdit *DBEdit5;
|
|
TDBEdit *DBEdit6;
|
|
TDBEdit *DBEdit7;
|
|
TDBEdit *DBEdit8;
|
|
TDBEdit *DBEdit9;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TButton *Button3;
|
|
TButton *Button4;
|
|
TButton *Button5;
|
|
TButton *Button6;
|
|
void __fastcall Button6Click(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button3Click(TObject *Sender);
|
|
void __fastcall Button4Click(TObject *Sender);
|
|
void __fastcall Button5Click(TObject *Sender);
|
|
|
|
|
|
void __fastcall FormActivate(TObject *Sender);
|
|
|
|
|
|
|
|
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm2(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm2 *Form2;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|