Dear sir
I have created a word template containing several form fields. The template containes several tables and some question and answers. I have created text form field and drop down list form fields. I am trying to read the form fields using Aspose. word and insert it in to a SQL database. But Aspose.Word does not read all the form fields in the template. It stops at a point and it is not reading the form fields below a point. I am not sure what criteria its using to determine that. But when I add fields horizontally in a line, it reads them, but when I add fields vertically one below the other it does not read them. I don't know what the issue is, can some one help ASAP. See the code below,also attached the Template
Dim license As Aspose.Cells.License = New Aspose.Cells.License()
license.SetLicense("Aspose.Total.lic")
Dim wdoc As Aspose.Words.Document = New Aspose.Words.Document("m:\Raj\PIF TEM.doc")
Dim documentFormFields As Aspose.Words.Fields.FormFieldCollection = wdoc.Range.FormFields
Me.Label1.Text = documentFormFields.Count.ToString + " LABEL 1
"
Me.Label2.Text = "
LABEL 2
"
For Each formField2 As FormField In documentFormFields
Me.Label1.Text += "
" + i.ToString + " " + formField2.Name + " >>>>>> "
Me.Label1.Text += formField2.Result
Next
Thanks.