36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef Bet03FrameUnitH
|
|
#define Bet03FrameUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <System.Classes.hpp>
|
|
#include <Vcl.Controls.hpp>
|
|
#include <Vcl.StdCtrls.hpp>
|
|
#include <Vcl.Forms.hpp>
|
|
#include <Vcl.ExtCtrls.hpp>
|
|
#include <Vcl.Mask.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TBet03Frame : public TFrame
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TLabeledEdit *m_leBlP;
|
|
TLabel *Label2;
|
|
TLabeledEdit *m_lePlB;
|
|
TLabel *Label3;
|
|
TEdit *m_edBlP;
|
|
TEdit *m_edPlB;
|
|
TStaticText *StaticText1;
|
|
TStaticText *StaticText2;
|
|
void __fastcall DiffEditExit(TObject *Sender);
|
|
void __fastcall BetEditKeyPress(TObject *Sender, System::WideChar &Key);
|
|
void __fastcall BetEditExit(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TBet03Frame(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TBet03Frame *Bet03Frame;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|