expression.CopyAppend()
where expression is a variable that represents a IbmScreen Object
expression.CopyAppend()
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