I have a project that I am creating that I need to get the XY from a point that has just been created.Example: THe user adds a new point feature in ArcPAD. I need to write the XY to varaible...a message box would be fine as well as I woudl be able to write that to a variable eventually.I am trying this and keep getting 0 for the X valueAny thoughts on how to retrieve the XY....NOTE this is before the feature gets saved...so its a pending XY valueTHanks in advanceDim objRS4, objSelLayer4, objEFPageOneControls4, objEditForm4
Set objSelLayer4 = Map.SelectionLayer
Set objRS4 = objSelLayer4.Records
objRS4.Bookmark = Map.SelectionBookmark
Set objEditForm4 = application.map.layers("Supports").forms("EDITFORM")
MessageBox "The X coord is " & objEditForm4.Fields.Shape.X