Initial commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
//---------------------------------------------------------------------------
|
||||
#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();
|
||||
}
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user