Currently I'm having an issue with WordBasic my company recently decided to update their system from 2007 to Word 365 but, according to Google, WordBasic is a relic from Word 97 which no longer works on Word.
I need to retrieve the directory of where I saved my file but can't seem to find an alternative to my current (was working) code.
With Dialogs(wdDialogFileSaveAs)
.Name = Jobnumber & " " & Jobname & " FDS V0_00.docx"
.Show
Dim Directory As String
Directory = WordBasic.filenameinfo(.Name, 5)
End With