first commit (2005-12-25)

This commit is contained in:
2021-09-01 18:26:41 +02:00
commit a86196a6a9
439 changed files with 402271 additions and 0 deletions

26
scr/TAlertBox.h Normal file
View File

@ -0,0 +1,26 @@
//---------------------------------------------------------------------------
#ifndef TAlertBoxH
#define TAlertBoxH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
//---------------------------------------------------------------------------
class TAlertBox : 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 TAlertBox(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TAlertBox *AlertBox;
//---------------------------------------------------------------------------
#endif