public static void MenuSetText(ToolStripTextBox item, string value)
        {
            ToolStrip par = item.GetCurrentParent();

            if (par.InvokeRequired)
            {
                MethodInvoker delcall = () => { MenuSetText(item, value); };

                try
                { par.Invoke(delcall); }

                catch { }
            }

            else
            {
                item.Text = value;
            }
        }