Componentes.Terceros.jvcl/internal/3.36/1/examples/JvInspector/BCB/TestForm.h
2009-03-04 12:31:55 +00:00

28 lines
916 B
C++

//---------------------------------------------------------------------------
#ifndef TestFormH
#define TestFormH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TfrmTest : public TForm
{
__published: // IDE-managed Components
TPanel *PanelForLabel;
TLabel *lblTest;
TEdit *Edit1;
TMemo *mmChanges;
void __fastcall Edit1Change1(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TfrmTest(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmTest *frmTest;
//---------------------------------------------------------------------------
#endif