CopyAppend Method (IbmScreen)
Appends selected text to the end of the Clipboard.
This sample selects an area on the screen and copies it to the clipboard. Then it selects another area and appends it to the copied area. You can test this sample by pasting the contents into a text editor.
Sub CopyAndAppendScreenTextToClipboard()
'Select the area to copy
ThisIbmScreen.SetSelectionStartPos 8, 9
ThisIbmScreen.ExtendSelectionRect 9, 71
ThisIbmScreen.Copy
'Select another area to append to the copied area
ThisIbmScreen.SetSelectionStartPos 13, 9
ThisIbmScreen.ExtendSelectionRect 14, 71
ThisIbmScreen.CopyAppend
End Sub