I'm currently using Aspose.Pdf.Kit 2.2.0 on the server I am having an issue with. I currently have 6.0 Static forms already working on the server for over one year. The last two weeks I've been working on adding some new forms that are 7.0 Static forms. The have all of the formfield names and used the new code to populate 7.0 forms but they are blank. Funny thing is it increases the file size. Code below and I will attach the form I am filling. No errors at all. I set some code watches and all variable have the right information and I verified that the fields have the correct numbers. Any ideas? Thanks.
Dim pdfForm As Form = New Form(inputfile, outputfile)
With pdfForm
'New Way
.FillField("form1[0].#subform[0].bankname[0]", BankName)
.FillField("form1[0].#subform[0].bankcode[0]", BankCode)
.FillField("form1[0].#subform[0].bankaddress[0]", BankAddress)
.FillField("form1[0].#subform[0].companyaddress[0]", CompanyAddress)
.FillField("form1[0].#subform[0].customers[0]", Customer)
.FillField("form1[0].#subform[0].repodate[0]", RepoDate)
.FillField("form1[0].#subform[0].customeraddress[0]", CAddress)
.FillField("form1[0].#subform[0].year[0]", Year)
.FillField("form1[0].#subform[0].make[0]", Make)
.FillField("form1[0].#subform[0].model[0]", Model)
.FillField("form1[0].#subform[0].bodytype[0]", Body)
.FillField("form1[0].#subform[0].priortitlenum[0]", PriorTitleNum)
.FillField("form1[0].#subform[0].vin[0]", VIN)
.FillField("form1[0].#subform[0].color[0]", Color)
.FillField("form1[0].#subform[0].mileage[0]", Mileage)
.FillField("form1[0].#subform[0].mileage1[0]", Mileage)
.FillField("form1[0].#subform[0].bankname1[0]", BankName)
.FillField("form1[0].#subform[0].date1[0]", TodayDate)
.FillField("form1[0].#subform[0].date2[0]", TodayDate)
'Prep and save
.FlattenAllFields()
.Save()