git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
31 lines
993 B
C++
31 lines
993 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef dbgridvH
|
|
#define dbgridvH
|
|
//---------------------------------------------------------------------------
|
|
#include <vcl\Classes.hpp>
|
|
#include <vcl\Controls.hpp>
|
|
#include <vcl\StdCtrls.hpp>
|
|
#include <vcl\Forms.hpp>
|
|
#include <vcl\ExtCtrls.hpp>
|
|
#include <vcl\DBCtrls.hpp>
|
|
#include <vcl\Buttons.hpp>
|
|
#include <vcl\DBGrids.hpp>
|
|
#include "Grids.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TForm3 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TDBNavigator *DBNavigator1;
|
|
TBitBtn *BitBtn1;
|
|
TPanel *Panel2;
|
|
TDBGrid *DBGrid1;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm3(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern TForm3 *Form3;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|