I’ve seen several posts asking how to use Copy Selected As Table in a formula on an action button. No one has responded. One person indicated there is no such thing in another thread but that was posted quite awhile ago. I could really use that @Command. Will it ever be included in the software? I will upgrade if I have to in order to get it, but I really thought it should have been part of 6.x in general…
Subject: RE: Any word on an @Command for Copy Selected as Table?
You can program the functionality in LotusScript using the NotesRichTextItem, NotesRichTextNavigator, and NotesRichTextTable classes. There are examples of such coding in the Domino Designer 6 Redbook. You won’t need to upgrade. Getting it onto the clipboard might be a challenge, but it can be done (e.g. by flashing it up in a dialogbox whose only field’s Entering event does a selectall/copy and closes the window).
If you must have an @Command to do it, write it as a LotusScript agent; then the @Command you need is @Command([RunAgent]; …).