git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef GridModeDemoTerminateH
|
|
#define GridModeDemoTerminateH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
const String strDeleting = "Deleting previously inserted records...";
|
|
const String strInserting = "Inserting records...";
|
|
const String strLoadData = "Loading data ...";
|
|
|
|
class TGridModeDemoTerminateForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPanel *Panel1;
|
|
TLabel *lbDesc;
|
|
TLabel *Label2;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TGridModeDemoTerminateForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TGridModeDemoTerminateForm *GridModeDemoTerminateForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|