I have a ToolStripMenuItem called myMenu. How can I access this like so:
ToolStripMenuItem
myMenu
/* Normally, I would do: */ this.myMenu... etc. /* But ho
Control GetControlByName(string Name) { foreach(Control c in this.Controls) if(c.Name == Name) return c; return null; }
Disregard this, I reinvent wheels.