Forex_Strategy_Builder.Actions.UpdateStatusLabel C# (CSharp) Method

UpdateStatusLabel() static private method

Updates the splash screen label.
static private UpdateStatusLabel ( string comment ) : void
comment string
return void
        static void UpdateStatusLabel(string comment)
        {
            try
            {
                TextWriter tw = new StreamWriter(GetLockFile(), false);
                tw.WriteLine(comment);
                tw.Close();
            }
            catch { }
        }
Actions