macros inconsistent with Word 2003

B

Bob Cronk

I have a number of customized macros that are stored in
Normal.dot that I use every day. When I upgraded to Word
2003 and Outlook 2003 on my Windows XP Pro machine, some
of my macros decided to work inconsistently. For
example, I hit Alt-E to pull up my directory on the
server in our office. When I hit Alt-E now, it will
sometimes pull up the correct directory and other times
it will pull up My Documents which I don't want. I can
sit there and hit Alt-E ten times in a row and it may
bring up the correct directory three of those times. It
is very inconsistent. Here is the code I am using:

Sub opendirectory()
On Error GoTo L
ChangeFileOpenDirectory "\\server2\systems"
With Dialogs(wdDialogFileOpen)
..Name = "*.*"
..Show
End With
L:
Exit Sub
End Sub

Any help would be greatly appreciated as I have a staff
of 20 people using this code. This is also happening on
other machines in our organization, not just my own.

Thanks,

Bob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top