problem with saving

  • Thread starter Thread starter poperinge
  • Start date Start date
P

poperinge

Hello Dave,

Thanks for your quick reply and feedback. I tried it and indeed I don'
get the messagebox "Excel recalculates formulas ....". As noted in th
Google Groups- thread I still get the normal messagebox "save changes
which I still manually have to confirm in order to get the correct dat
read back to my application.
So I am now looking if I can set some parameter in the registry tha
does this automatically.


thanks again
Stefaa
 
I'm not aware of any other tweak to the registry.

But if you're opening the workbook to use a calculator, you could just close the
workbook without saving:

dim wkbk as workbook
set wkbk = workbooks.open(filename:=....)
'do you manipulation
wkbk.close savechanges:=false
set wkbk = nothing
....
 

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