Initial commit

This commit is contained in:
2026-06-13 00:10:11 +08:00
commit 2191c1aed4
535 changed files with 184587 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "SplashFormUnit.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TSplashForm *SplashForm;
//---------------------------------------------------------------------------
__fastcall TSplashForm::TSplashForm(TComponent* Owner)
: TForm(Owner)
{
m_lblProgress->ControlStyle>>csOpaque;
}
//---------------------------------------------------------------------------
void __fastcall TSplashForm::ShowProgress( String strMsg )
{
m_lblProgress->Caption = strMsg;
Update();
}
//---------------------------------------------------------------------------