31 lines
955 B
C++
31 lines
955 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef listadoH
|
|
#define listadoH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\DBGrids.hpp>
|
|
#include "Grids.hpp"
|
|
#include <vcl\DB.hpp>
|
|
#include <vcl\DBTables.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm5 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TPanel *Panel2;
|
|
TDBGrid *DBGrid1;
|
|
TDataSource *DataSource1;
|
|
TTable *Table1;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm5(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm5 *Form5;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|