Apr 19, 2007 #1 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
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
Apr 19, 2007 #2 Qik3Coder Programmer Jan 4, 2006 1,487 US 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. Upvote 0 Downvote
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.