VBA Word 2003 Dialog box
Posted
by user171476
on Stack Overflow
See other posts from Stack Overflow
or by user171476
Published on 2009-10-13T07:01:45Z
Indexed on
2010/03/18
3:01 UTC
Read the original article
Hit count: 434
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.
© Stack Overflow or respective owner