Files
AC_Pro/SplashFormUnit.cpp
2026-06-13 00:05:19 +08:00

25 lines
755 B
C++

//---------------------------------------------------------------------------
#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();
}
//---------------------------------------------------------------------------