/// <summary> /// Sets the text for the specified control in multithreading circumstances. /// </summary> /// <param name="control"></param> /// <param name="text"></param> public static void SetControlText(Control control, String text) { if (control != null) { if (control.InvokeRequired) { SetControlTextSafe scts = new SetControlTextSafe(SetControlText); control.Invoke(scts, new Object[] { control, text }); } else { control.Text = text; } } }