<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: EDITFORM in Edit mode. in ArcPad Questions</title>
    <link>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560077#M4062</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There's shp with a lot of points. GPS puts the point and I need to open the attributes of the closest point in edit mode. how to implement it?&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;Chingiz&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I thin you should export it as shape file by Right click to your GPS coords file on left side in the table of contents then go to DATA then EXPORT. After exporting it go to that shapefile then open its attribute table you can see your attribute. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;OR&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if your want to see the coords of that file, you should have XTOOLS extension&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think it is clear&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Oct 2011 11:20:46 GMT</pubDate>
    <dc:creator>HatibuSemkieti</dc:creator>
    <dc:date>2011-10-05T11:20:46Z</dc:date>
    <item>
      <title>EDITFORM in Edit mode.</title>
      <link>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560075#M4060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There's shp with a lot of points. GPS puts the point and I need to open the attributes of the closest point in edit mode. how to implement it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chingiz&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2011 06:08:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560075#M4060</guid>
      <dc:creator>ChingizEsenaliev</dc:creator>
      <dc:date>2011-10-03T06:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: EDITFORM in Edit mode.</title>
      <link>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560076#M4061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This should get you started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
Dim objRS, Layer, Bookmark, X, Y, MaxDistance
Set Layer = Map.Layers("LayerName to search for")
MaxDistance = "1000" ' Distance is in map units

' Select the nearest point
X = GPS.X
Y = GPS.Y
Set objRS = Layer.Records
Bookmark = objRS.FindNearestXY(X, Y, MaxDistance)
Call Map.Select(Layer, Bookmark)

' Show the attributes of the selected point
If Bookmark &amp;lt;&amp;gt; 0 Then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Layer.CanEdit Then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Layer.Editable = True
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call Application.ExecuteCommand("featureproperties")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If
Else
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call MsgBox("Nothing Found")
End If
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:10:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560076#M4061</guid>
      <dc:creator>RobChouinard</dc:creator>
      <dc:date>2021-12-12T00:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: EDITFORM in Edit mode.</title>
      <link>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560077#M4062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There's shp with a lot of points. GPS puts the point and I need to open the attributes of the closest point in edit mode. how to implement it?&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;Chingiz&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I thin you should export it as shape file by Right click to your GPS coords file on left side in the table of contents then go to DATA then EXPORT. After exporting it go to that shapefile then open its attribute table you can see your attribute. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;OR&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if your want to see the coords of that file, you should have XTOOLS extension&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think it is clear&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 11:20:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560077#M4062</guid>
      <dc:creator>HatibuSemkieti</dc:creator>
      <dc:date>2011-10-05T11:20:46Z</dc:date>
    </item>
    <item>
      <title>EDITFORM in Edit mode.</title>
      <link>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560078#M4063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply and detailed response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It works )&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2011 04:17:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/editform-in-edit-mode/m-p/560078#M4063</guid>
      <dc:creator>ChingizEsenaliev</dc:creator>
      <dc:date>2011-10-06T04:17:56Z</dc:date>
    </item>
  </channel>
</rss>

