
PRB: SaveDialog doesn't save file if existant
I've creasted a simple macro which creates a FileSaveAs Dialog and call its
Show method.
If I execute the Macro directly in word everything works fine!
If I start the macro from VB with the following code:
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
objWord.Run "Test"
and choose an existing file in the dialog box word doesn't save the file
and doesn't close the dialog. Only if I save it to a new filename it works.
Can anyone help?
Jan