S
Steve
I’m trying to write a macro that will do the same thing as File/Open but it
will open the “file listing dialog box†to a particular folder (e.g.,
z:\word) and then allow me to choose which file to open in that
folder/directory.
When I record the macro, I get to the open dialog box for the desired
folder, but I’m unable to turnoff the recorder at the desired folder. I can
either cancel the recording or continue until I select a document. I would
like the macro to stop at the desired folder and allow the use to select the
document to open.
In doing some research, it seems that I need to write a VBA code to
accomplish the task. I have a very limited knowledge base when it comes to
writing code.
I did find the following code:
Sub OpenFolder()
Application.Dialogs(wdDialogFileOpen).Show
End Sub
It does works; but it opens the last directory/folder that used in Word.
What additional code/lines do I need to include so it opens to the
directory/folder z:\word?
At this point, I’m not even sure if I’m asking the question correctly. Any
help or suggestions are appreciated.
will open the “file listing dialog box†to a particular folder (e.g.,
z:\word) and then allow me to choose which file to open in that
folder/directory.
When I record the macro, I get to the open dialog box for the desired
folder, but I’m unable to turnoff the recorder at the desired folder. I can
either cancel the recording or continue until I select a document. I would
like the macro to stop at the desired folder and allow the use to select the
document to open.
In doing some research, it seems that I need to write a VBA code to
accomplish the task. I have a very limited knowledge base when it comes to
writing code.
I did find the following code:
Sub OpenFolder()
Application.Dialogs(wdDialogFileOpen).Show
End Sub
It does works; but it opens the last directory/folder that used in Word.
What additional code/lines do I need to include so it opens to the
directory/folder z:\word?
At this point, I’m not even sure if I’m asking the question correctly. Any
help or suggestions are appreciated.