I have the following code behind a button on a user form to open a document in Word:
Private Sub CommandButton1_Click()
Dim appWD As Object
Set appWD = CreateObject(“Word.Application”)
appWD.Visible = True
appWD.Documents.Open Filename:=”c:My Documentsdocname.doc”
End Sub
What I’d like to do now is to just launch the File|Open menu in Word so that I can choose any file or location. Can anyone help with this?
Thanks in advance.
Kyle