drom
Well-known Member
- Joined
- Mar 20, 2005
- Messages
- 563
- Office Version
- 2021
- 2019
- 2016
- 2013
- 2011
- 2010
- 2007
Hi and thanks in advance!!
I am opening a Word doc from Excel using vba (no problem)
I have to copy some paragraphs in a new word doc (no problem)
I do this in order to get a string (explain is too long (but works fast and nive, so don't worry for this)
When I have to close the opened 2 word documents I use from Excel's VBA in a macro this lines at the end of the macro:
But Word is still asking me:
Do you want to keep the Last item you copied?
If you do, it may take a bit longer to exit.
When the code runs this sentence:
How can I avoid this ?
I have to open many PDF files in word from Excel and is very disturbing
Thanks again!
I am opening a Word doc from Excel using vba (no problem)
I have to copy some paragraphs in a new word doc (no problem)
I do this in order to get a string (explain is too long (but works fast and nive, so don't worry for this)
When I have to close the opened 2 word documents I use from Excel's VBA in a macro this lines at the end of the macro:
VBA Code:
'Many Code here
Application.DisplayAlerts = False
Application.CutCopyMode = False
wDoc1.Close False: Set wDoc1 = Nothing
wDoc2.Close False: Set wDoc2 = Nothing
wApp.Quit: Set wApp = Nothing
End Sub
But Word is still asking me:
Do you want to keep the Last item you copied?
If you do, it may take a bit longer to exit.
When the code runs this sentence:
VBA Code:
wApp.Quit
I have to open many PDF files in word from Excel and is very disturbing
Thanks again!