Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When using macros to retreive data from other spreadsheets (along with
copy and paste) and when closing the spreadsheet a dialog box appears asking if you want to save the the information to the clipboard which stops the macro until you answer the dialog box. Is there a way to close the dialog box and not save the information on the clipboard in the macro instead of having to answer. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just an idea but I worked round that one by saving data in an array (i.e. using
myArray = myRange.value etc) rather than using copy and paste. The only problem is that cell formats wont be saved. Regards Noel "Randy" wrote: When using macros to retreive data from other spreadsheets (along with copy and paste) and when closing the spreadsheet a dialog box appears asking if you want to save the the information to the clipboard which stops the macro until you answer the dialog box. Is there a way to close the dialog box and not save the information on the clipboard in the macro instead of having to answer. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
after copying do
application.CutCopy = False -- Regards, Tom Ogilvy "Randy" wrote in message om... When using macros to retreive data from other spreadsheets (along with copy and paste) and when closing the spreadsheet a dialog box appears asking if you want to save the the information to the clipboard which stops the macro until you answer the dialog box. Is there a way to close the dialog box and not save the information on the clipboard in the macro instead of having to answer. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dang, typo
Application.CutCopyMode = False -- Regards, Tom Ogilvy "Tom Ogilvy" wrote in message ... after copying do application.CutCopy = False -- Regards, Tom Ogilvy "Randy" wrote in message om... When using macros to retreive data from other spreadsheets (along with copy and paste) and when closing the spreadsheet a dialog box appears asking if you want to save the the information to the clipboard which stops the macro until you answer the dialog box. Is there a way to close the dialog box and not save the information on the clipboard in the macro instead of having to answer. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can clear the clipboard with the follow code:
Application.CutCopyMode = False -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Randy" wrote in message om... When using macros to retreive data from other spreadsheets (along with copy and paste) and when closing the spreadsheet a dialog box appears asking if you want to save the the information to the clipboard which stops the macro until you answer the dialog box. Is there a way to close the dialog box and not save the information on the clipboard in the macro instead of having to answer. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Where does Ms XL store the clipboard ? or where does MS Windowsstore clipboard ? | Setting up and Configuration of Excel | |||
Where does Ms XL store the clipboard ? or where does MS Windowsstore clipboard ? | Setting up and Configuration of Excel | |||
Clipboard empty but still get waring that clipboard is full | Excel Discussion (Misc queries) | |||
Clipboard | New Users to Excel | |||
CLIPBOARD | Excel Programming |