I have a ToolStripMenuItem called myMenu. How can I access this like so:
ToolStripMenuItem
myMenu
/* Normally, I would do: */ this.myMenu... etc. /* But ho
Use the Control.ControlCollection.Find method.
Try this:
this.Controls.Find()