positioning to dropdown

B

bryan

I have the following code to position to a certain field on a form:
ActiveDocument.Bookmarks("Text6").Range.Fields(1).Result.Select

What is the syntax to position to dropdown1?

Thanks,
Bryan
 
D

Doug Robbins - Word MVP

That could be

ActiveDocument.Bookmarks("Text6").Range.Select

and for DropDown1

ActiveDocument.Bookmarks("DropDown1").Range.Select


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
B

bryan

After playing around with it I used
ActiveDocument.Bookmarks("DropDown1").Select

What would be the difference between this and including Range?

Thanks,
Bryan
 

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