No display : keep information in clipboard

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I open a document and copy the information in the first document. When I
close the second document, I have a message which ask me if I want to keep
the information in clipboard.
Does anyone know how to stop this message ?

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Workbook(“workbook2â€).close (False)
 
Selection.PasteSpecial Paste:=xlPasteValues, _
Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Workbook("workbook2").close (False)
 

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