27 lines
947 B
C++
27 lines
947 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef TInfoBoxH
|
|
#define TInfoBoxH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Buttons.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TInfoBox : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TBitBtn *BitBtn1;
|
|
TLabel *Label2;
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
|
void __fastcall FormShow(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TInfoBox(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TInfoBox *InfoBox;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|