Hi All:
I have multiple word fillable form, I need to retrive all the value filled in by the user on each form and insert the value into Excel sheet row by row, each row represents 1 file.
I got the program working using Excel VBA, however I try many ways to get the title or label that's on top of each textbox field.
i.e.
First Name [Chieh ], Last name [Zh ], Address [123 confused street ], ... .... ...
I can get the textbox type, name and result using following command
'Retrieve Full Filename, field type, field name and fieldvalue
strfieldtype = oDoc.FormFields(i).Type
strFieldName = oDoc.FormFields(i).Name
strFieldValue = oDoc.FormFields(i).Result
How do I retrieve the label "First name", "Last Name".... I tried to search through the word object, with no success.... Kindly help.
Thanks
Chieh
I have multiple word fillable form, I need to retrive all the value filled in by the user on each form and insert the value into Excel sheet row by row, each row represents 1 file.
I got the program working using Excel VBA, however I try many ways to get the title or label that's on top of each textbox field.
i.e.
First Name [Chieh ], Last name [Zh ], Address [123 confused street ], ... .... ...
I can get the textbox type, name and result using following command
'Retrieve Full Filename, field type, field name and fieldvalue
strfieldtype = oDoc.FormFields(i).Type
strFieldName = oDoc.FormFields(i).Name
strFieldValue = oDoc.FormFields(i).Result
How do I retrieve the label "First name", "Last Name".... I tried to search through the word object, with no success.... Kindly help.
Thanks
Chieh