Change Word default save format programatically

R

Rabaté

Hello

We all know how to change Word default save format by UI. I'm been looking
for a way to do it programmatically? I've been searching object model,
registry, found nothing.
I tried Application.DafaultSaveFormat = WdSaveFormat.wdFormatDocument does
not produce the effect I'm looking for.

Thanks to macro recorder that (hopefully) still exists, the correct
instruction is:
Application.DafaultSaveFormat = "Doc". Does not seem quite natural though.
 
Top