ArcPad Scripting Object Model
Update Method
See Also  Example  Send comments on this topic.
Recordset Collection : Update Method

Glossary Item Box

Description

Saves any changes to the current record.

Syntax

object.Update

Remarks

Call the Update method to save the current record and any changes you have made to it.
Changes to the current record will be lost if:

You call the AddNew method and then move to another record without first calling Update.
You call the AddNew method and then call AddNew again without first calling Update.

Example

Captures the date and time from the GPS and stores it in the DTSTAMP attribute field of the selected feature. This example assumes the attribute DTSTAMP exists.
Timestamp Attribute Example (VBScript)Copy Code
Sub DTCapture
  If Map.SelectionLayer Is Nothing Then Exit Sub
  Dim pSelRS
  Set pSelRS = Map.SelectionLayer.Records
  pSelRS.Bookmark = Map.SelectionBookmark
  pSelRS.Fields("DTSTAMP").Value = FormatDateTime(GPS.Properties("UTC"))
  pSelRS.Update
  Set pSelRS = Nothing
End Sub

See Also

© 2012 All Rights Reserved.