the commandbar for the right click menu on the worksheet is Cell and the
command to display it is
Sub ABCD()
CommandBars("Cell").ShowPopup
End Sub
However, in my opinion (and I haven't tested it so I could be surprised, but
doubt it)
You would need to create your own commandbar menu and put the code behind it
that would copy the information out of the textbox. I would think the normal
right click copy command is for copying information from whatever object
produces the menu - it isn't a generic command that works on whatever has the
focus.
so to build you own:
http://support.microsoft.com/default.aspx?scid=kb;en-us;830502&Product=xlw
How to customize menus and menu bars in Excel
http://support.microsoft.com/default.aspx?scid=kb;en-us;166755
File Title: Customizing Menu Bars, Menus, and Menu Items in Microsoft(R)
Excel 97
File Name: WE1183.EXE
File Size: 58041 bytes
File Date: 06/20/97
Keywords: kbfile kbappnote
Description: This Application Note can help you learn techniques for writing
Visual Basic(R) for Applications code to customize menus in Microsoft Excel
97. This Application Note contains code examples that you can use with the
following elements: menu bars, menus, menu items, submenus, and shortcut
menus.
to put a text string in or pull text out of the Clipboard:
http://www.cpearson.com/excel/clipboard.htm