/// <summary> /// Sets the text for the specified control in multithreading circumstances. /// </summary> /// <param name="control"></param> /// <param name="text"></param> public static void SetListBox(ListBox control, String text) { if (control != null) { if (control.InvokeRequired) { SetListBoxSafe scts = new SetListBoxSafe(SetListBox); control.Invoke(scts, new Object[] { control, text }); } else { control.Items.Insert(0, text); } } }