how would i add like under "File" on the menustrip, "we" something like that just wondering how to add to the menu.
Printable View
how would i add like under "File" on the menustrip, "we" something like that just wondering how to add to the menu.
You say MenuStrip so I assume you are using 2005. I don't have 2005 installed on my new machine but, from memory, you need to add items to a MenuStrip from the Properties window. There would be a property named Items or something similar. You would select that property and press the browse (...) button to open the editor, from which you can add your menu items. I'm pretty sure that's correct.
thats not wat i mean i wanna add to the menu while the process is running.
Then do that programmatically. According to MSDN, you'd add a ToolStripMenuItem object to your MenuStrip object. There's even an example given here:
http://msdn2.microsoft.com/en-us/lib...orms.menustrip