PDA

View Full Version : [SOLVED:] Can VBA force an Excel file to open as read/write?



dragon
09-23-2005, 03:21 AM
Hi

is it possible to force Excel to open a file as read/write even if it has been saved with the ReadOnlyRecommended option for opening it?

:banghead:

dragon
09-23-2005, 03:58 AM
Sorry - silly question. Just realised...


Workbooks.Open myfile, IgnoreReadOnlyRecommended:=True

Thanks anyway

Bob Phillips
09-23-2005, 04:03 AM
Sorry - silly question. Just realised...

Workbooks.Open myfile, IgnoreReadOnlyRecommended:=True

Thanks anyway

LOL. You should see my response. Talk about over-engineering.

dragon
09-23-2005, 04:08 AM
Thanks xld - I didn't realise you had already responded to my query. I'll try your method, it may help me in the future with something else.

Thanks again.