Hello everyone,

I am having an issue with trying to automate a Word document that has Text fields and dropdown listboxes. I am able to open the word documen with no issue but I'm not sure as to how to go about then setting the text values of the Text fields or select an item from a drop down list box on that word document.

Any assistance would be great. Here is the code that I am using to open my word document:

Dim oWord As Word.Application
Dim oDoc As Word.Document

oWord = CreateObject("Word.Application")
oWord.Visible = True
oDoc = oWord.Documents.Open("C:\Final.doc")


It is at this point I'm not sure how to access each Text field or dropdown list box.

Thank you all again.

Mythos