vb.net - Issue with pdf docs not showing up -
we wrote code client using aspose.pdf library, on system pdf in question opened fine , of merge fields filled in (we don't have exact list of merge fields do).
they're telling me on system, documents take 2-4 mins open while others don't open @ all.
what possible cause of document not opening @ all?
my code below:
' load form dim doc aspose.pdf.document = new aspose.pdf.document(stemplatedir & sdocname) 'get names of form fields dim fields aspose.pdf.interactivefeatures.forms.field() = doc.form.fields dim sfield string dim field aspose.pdf.interactivefeatures.forms.field if fields.length > 0 each field in fields 'get name of field sfield = field.fullname 'if merge field isn't valid we'll leave , assume fill-in if nmergecol.contains(sfield) , not isnothing(sfield) field.value = nmergecol.item(sfield) end if next end if
this has been resolved! suspected, problem client's javascript within pdf file. problem within calculations absolute value being used (name.value). once switched relative value (this.event.value) pdf file began behaving correctly aspose code.
Comments
Post a Comment