How do I cut/copy paste without using the clipboard?

  • Thread starter Thread starter Simon
  • Start date Start date
Set cutcopy mode I think False. If not try true.

Returns or sets the status of Cut or Copy mode. Can be True, False, or an
XLCutCopyMode constant, as shown in the following tables. Read/write Long.

Return value Description
False Not in Cut or Copy mode
xlCopy In Copy mode
xlCut In Cut mode

Set value Description
False Cancels Cut or Copy mode and removes the moving border.
True Cancels Cut or Copy mode and removes the moving border.


Example
This example uses a message box to display the status of Cut or Copy mode.

Select Case Application.CutCopyMode
Case Is = False
MsgBox "Not in Cut or Copy mode"
Case Is = xlCopy
MsgBox "In Copy mode"
Case Is = xlCut
MsgBox "In Cut mode"
End Select
 
You need to explain the question, depending on what you mean there's a
variety of answers.

Regards,
Peter T
 
You need to explain the question, depending on what you mean there's a
variety of answers.

Regards,
Peter T






- Show quoted text -

No worries, I am using Copy:= Destination
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top