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
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 "bryan" wrote in message news:30008C50-ACE9-4F03-AB69-7593E04BC176@microsoft.com... >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 >
After playing around with it I used ActiveDocument.Bookmarks("DropDown1").Select What would be the difference between this and including Range? Thanks, Bryan "Doug Robbins - Word MVP" wrote: > 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 > > "bryan" wrote in message > news:30008C50-ACE9-4F03-AB69-7593E04BC176@microsoft.com... > >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 > > > > >