Prompt user to fill in drop down field when document opens

G

Guest

When a document opens, is there a way to immediately move focus to a drop
down form field so that the user is required to make a selection? I'm looking
for the same kind of "auto-launch" behavior found with FILLIN fields when
opening a document.

DGjr
 
G

Greg

Maybe something like:

Sub AutoOpen()
Selection.GoTo What:=wdGoToBookmark, Name:="Dropdown1"
SendKeys "%{Down}"
End Sub
 

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