ARCed.Forms.Splash.SplashScreenForm.UdpateStatusText C# (CSharp) Method

UdpateStatusText() public method

Update text message
public UdpateStatusText ( string Text ) : void
Text string Message
return void
        public void UdpateStatusText(string Text)
        {
            if (InvokeRequired)
            {
                // We're not in the UI thread, so we need to call BeginInvoke
                BeginInvoke(new StringParameterDelegate(this.UdpateStatusText), new object[] { Text });
                return;
            }
            this.labelStatus.ForeColor = Color.AntiqueWhite;
            this.labelStatus.Text = Text;
        }