Hi,

I am using Acrobat SDk for Adobe Professional 7.0 for integratting
Vb.net and Adobe forms.

I have some form feilds that used in my application.

The following code is used

Dim jsObj As Object
Dim oAcroPDDoc As Acrobat.AcroPDDoc
oAcroPDDoc = avDoc.GetPDDoc()
jsObj = oAcroPDDoc.GetJSObject()

Dim H As Object
H = jsObj.getField("Age")
H.value = "23"

Here 23 is a string that is set in the form feilds, How ever when
again I get the values of the "Age" field. by doing the
H = jsObj.getField("Age")

Here suprisingly the datatype of H changes to double. How can I
restrict this ? PLease help