Hi,
DRJ is right but there is a work-around (less flexibel..but still)![]()
Just execute the toolbar button:
[VBA]' CommandBars("File").Controls("Opslaan als...").Execute 'Dutch
CommandBars("File").Controls("Save As...").Execute 'English
[/VBA]
Or more nutral:
[VBA]
CommandBars.FindControl(Id:=748).Execute
[/VBA]
Enjoy!![]()