S
stman
Hi,
I'm trying to create a macro that displays the Go To dialog box with
settings already in place, so the user can find and determine their action
for each found instance individually. The settings are:
Go to what: Field
Enter field name: REF
I've got this working:
Selection.GoTo What:=wdGoToField, Which:=wdGoToNext, Count:=1, Name:="REF"
....which actually goes to the exact item and highlights it. But if I then add:
Dialogs(wdDialogEditGoTo).Display
....the Go To dialog opens but with some other settings. How can I retain the
wdGoToField, wdGoToNext, and Name settings in the displayed dialog?
I'm trying to create a macro that displays the Go To dialog box with
settings already in place, so the user can find and determine their action
for each found instance individually. The settings are:
Go to what: Field
Enter field name: REF
I've got this working:
Selection.GoTo What:=wdGoToField, Which:=wdGoToNext, Count:=1, Name:="REF"
....which actually goes to the exact item and highlights it. But if I then add:
Dialogs(wdDialogEditGoTo).Display
....the Go To dialog opens but with some other settings. How can I retain the
wdGoToField, wdGoToNext, and Name settings in the displayed dialog?