VBA Word 2003 Dialog box
- by user171476
Hi,
Our client enironment recently migrated from word 2000 to 2003, we use the below code in one of the templates to show the word's default insert file dialog box. Word is integrated with another third party application Hummingbird docspen.
With Dialogs(wdDialogInsertFile)
.Name = "q:*.*"
.Show
End With
In old environment it opens up the default insertfile dialog box pointing to my documents folder, where as in word 2003, it opens up the Docsopen insertfile dialog box.
I have compared the settings of word 2000 and 2003 it seems to be same.
Any suggestions on this please.