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