Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ContextMenuStrip Insert Standard Items

Status
Not open for further replies.

Kliot

Programmer
Jan 10, 2003
622
US
Is there a simple way to add standard items such as cut, copy and paste to a ContextMenuStrip.

The menuStrip dialog gives you a simple link to "Insert Standard Items," but I don't see a simple way of doing this with a ContextMenuStrip.

Thanks
 
well, if both of the controls that you want are "menu Items" then you show be able to do a:

For each menuItem in Menu
contextMenu1.items.add(menuItem)
next

Its a start...






-The answer to your problem may not be the answer to your question.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top