<?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: Recordset.Find method   - Does this work in axf layers? in ArcPad Questions</title>
    <link>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683533#M4928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, RS.Find doesn't work for AXF Feature Layers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2012 18:53:10 GMT</pubDate>
    <dc:creator>ThaiTruong</dc:creator>
    <dc:date>2012-10-03T18:53:10Z</dc:date>
    <item>
      <title>Recordset.Find method   - Does this work in axf layers?</title>
      <link>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683532#M4927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a point layer in an axf file, I have a reference to the recordset and I am simply trying to use FIND to locate a particular record. The script keeps throwing an "Object doesn't support this method" error. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this correct? Does an axf recordset not support Find?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Keith&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 18:25:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683532#M4927</guid>
      <dc:creator>KeithGanzenmuller</dc:creator>
      <dc:date>2012-10-03T18:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Recordset.Find method   - Does this work in axf layers?</title>
      <link>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683533#M4928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, RS.Find doesn't work for AXF Feature Layers&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 18:53:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683533#M4928</guid>
      <dc:creator>ThaiTruong</dc:creator>
      <dc:date>2012-10-03T18:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Recordset.Find method   - Does this work in axf layers?</title>
      <link>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683534#M4929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. I could not find that written anywhere in the help system and there is no differentiation in the OMD for axf and non-axf feature layers. Very frustrating.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2012 19:00:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683534#M4929</guid>
      <dc:creator>KeithGanzenmuller</dc:creator>
      <dc:date>2012-10-03T19:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Recordset.Find method   - Does this work in axf layers?</title>
      <link>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683535#M4930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is a workaround for you.&amp;nbsp; I used Riverside.axf\Parcel from ArcPad Samples for this sample code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The message box shows the address of APN = 225112008&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
Set objLayer = Application.Map.Layers("Parcel") 
Dim pDS
Set pDS = Application.Map.Layers("Parcel").DataSource
Dim pRS
Set pRS = pDS.Execute("SELECT * FROM PARCEL WHERE APN = 225112008")
If (pRS is Nothing) Then
 MsgBox("No Record Found!")
 Exit Sub
End If
pRS.MoveFirst
Do While Not pRS.EOF
 msgBox(pRS.Fields(3).Name &amp;amp; ": " &amp;amp; pRS.Fields(3).Value &amp;amp; vbnewline &amp;amp; pRS.Fields(5).Name &amp;amp; ": " &amp;amp; pRS.Fields(5).Value)
 pRS.MoveNext
Loop
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:45:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/recordset-find-method-nbsp-nbsp-does-this-work-in/m-p/683535#M4930</guid>
      <dc:creator>ThaiTruong</dc:creator>
      <dc:date>2021-12-12T04:45:14Z</dc:date>
    </item>
  </channel>
</rss>

