Hi,
I have a script that works in ArcPad 10 but does not work in ArcPad 10.2
I am unable to obtain a value from a field. I am using "objRS.Fields("TREENO").Value" where "TREENO" is the name of the field.
Set objRS = Application.map.layers("BatTree").records
objRS.Movefirst
MsgBox "The value is: " & CStr(objRS.Fields("TREENO").Value)
The messagebox is blank.
This worked fine in ArcPad 10.
Any help will be greatly appreciated.