View Single Post
 
Old 01-07-2019, 02:20 AM
Yong Xiang Yong Xiang is offline Windows 7 32bit Office 2016
Novice
 
Join Date: Dec 2018
Posts: 9
Yong Xiang is on a distinguished road
Default

Hello Happy New Year Guessed.
I think I added too many xml mapping so in which I deleted them.
It works! Thank you so much

Now I want to save the file into other location before the userform pop out.
Which is the last step but I can't seem to find a way to make it pop out.


Code:
PHP Code:
Private Sub DocumentSaveAs()

Dim strFilePathstrFileName
strFilePath 
"C:\Users\Public\Documents\"
strFileName = "
put-filename-here.docx"

With Dialogs(wdDialogFileSaveAs)
    .Name = strFilePath & strFileName
    .Show
End With

End Sub 
Reply With Quote