Initial commit

This commit is contained in:
2026-06-12 22:37:02 +08:00
commit 94e46587da
77 changed files with 168188 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Bet02FrameUnit.h"
#include "PolicyUnit.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TBet02Frame *Bet02Frame = NULL;
//---------------------------------------------------------------------------
__fastcall TBet02Frame::TBet02Frame(TComponent* Owner)
: TFrame(Owner)
{
m_rgs[0] = m_rgB3R;
m_rgs[1] = m_rgP3R;
for(int i=0; i<2; i++)
m_rgs[i]->ItemIndex = g_BPAskBet.bet[i];
}
//---------------------------------------------------------------------------