<?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: VB.NET - Set target feature class and select by attributes in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298479#M7750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried placing the stop at several different points in the function, but regardless I get this error in the Immediate Window:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll
A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll
A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems vague, but I am trying to research what may be causing this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 14:19:55 GMT</pubDate>
    <dc:creator>MatthewLawton</dc:creator>
    <dc:date>2021-12-11T14:19:55Z</dc:date>
    <item>
      <title>VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298471#M7742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have had difficutly in the past with VB.NET and ArcObjects, it has never quite clicked for me. However, I am bolstered by the new Add-In technology at release 10. It seems like a friendlier way of working with ArcObjects for a non-programmer like me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But I have hit a stumbling block pretty early on. I am trying to build a very simpel Add-In that will select a voter precinct polygon feature class via user input. I have successfully built the form in Visual Studio and it appears when I test the tool in ArcMap. I am capturing the user input from the text box on the form, but I don't know what the next step is. How do I select a target feature class (the voter precincts) and pass an attribute query?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is what I have so far:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;Public Class frmPrecinctSearch

&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox(txtPrecinctSearch.Text) 'for debugging, shows the textbox value is being captured successfully
&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub
End Class&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this is too basic of a question then please direct me to the appropriate documentation where I may discover the solution. I seem to be having difficulty with finding ArcObjects documents or instructions that cover this sort of basic functionality.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Apr 2011 16:34:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298471#M7742</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2011-04-18T16:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298472#M7743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here are a few links that will hopefully help you get started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/content/arcgissdks/10.0/about"&gt;Developer SDKs&lt;/A&gt;&lt;SPAN&gt;: This is a good entry point to the documentation regardless of language.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2) &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/ao_home.html"&gt;ArcObjects SDK 10 .NET&lt;/A&gt;&lt;SPAN&gt;: Here you see serveral tabs for concepts and samples, the core API documentation, ect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3) From link 2 we will go to: Developing with ArcGIS &amp;gt; Learning ArcObjects &amp;gt; Managing Data &amp;gt; Working with feature data &amp;gt; Querying data &amp;gt; &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/Querying_geodatabase_tables/000100000146000000/"&gt;Querying geodatabase tables&lt;/A&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/Executing_spatial_queries/000100000240000000/"&gt;Executing spatial queries&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Apr 2011 13:36:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298472#M7743</guid>
      <dc:creator>JohnHauck</dc:creator>
      <dc:date>2011-04-19T13:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298473#M7744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm still having difficulty with this. The links provided are a very high-level overview, but I can't seem to find a way to get started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have got my button click function this far:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pMap As IMapDocument
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim activeView As IActiveView
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim featureLayer As IFeatureLayer
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim whereClause As String
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pMap = New MapDocument
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; activeView = pMap
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer = pMap.Layer(0, 0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; whereClause = "PRECINCT = " + txtPrecinctSearch.Text
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SelectMapFeaturesByAttributeQuery(activeView, featureLayer, whereClause)
&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The variable txtPrecinctSearch.Text is coming from a user input textbox on the form. There are no errors shown in the code, but I get a fatal exception when I try to run this. I just don't understand what is causing the problem. It really is ridiculous that there is no clear documentation on how to set up the variables for the current map, active map frame, and the selected layer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:19:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298473#M7744</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2021-12-11T14:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298474#M7745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't know if this is the ONLY problem/cause of your issue, but when querying String/Text type fields, you need to put the WHERE clause in single quotes.&amp;nbsp; Something like this (I am writting this in VB.net so not sure if replacing "+" with "&amp;amp;" as I have done will affect it):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

whereClause = "PRECINCT = '" &amp;amp; txtPrecinctSearch.Text &amp;amp; "'"

&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;james&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm still having difficulty with this. The links provided are a very high-level overview, but I can't seem to find a way to get started.&lt;BR /&gt;&lt;BR /&gt;I have got my button click function this far:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim pMap As IMapDocument
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim activeView As IActiveView
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim featureLayer As IFeatureLayer
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim whereClause As String
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pMap = New MapDocument
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; activeView = pMap
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer = pMap.Layer(0, 0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; whereClause = "PRECINCT = " + txtPrecinctSearch.Text
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SelectMapFeaturesByAttributeQuery(activeView, featureLayer, whereClause)
&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;The variable txtPrecinctSearch.Text is coming from a user input textbox on the form. There are no errors shown in the code, but I get a fatal exception when I try to run this. I just don't understand what is causing the problem. It really is ridiculous that there is no clear documentation on how to set up the variables for the current map, active map frame, and the selected layer.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:19:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298474#M7745</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T14:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298475#M7746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, James. I am still getting the fatal exception when I try to run the program, but adding the single quotes to the where clause is still a good idea.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 15:28:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298475#M7746</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2011-04-27T15:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298476#M7747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks, James. I am still getting the fatal exception when I try to run the program, but adding the single quotes to the where clause is still a good idea.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe the exception is coming from somewhere else in your application/code.&amp;nbsp; I really don't know.&amp;nbsp; You can:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; Put a stop somewhere in that particular funciton and step thru the code line by line and see where it fails.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; This is a good idea to do anyway: put in a Try Catch block to trap and show error messages.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Try
&amp;nbsp; 'some code that does stuff here

Catch ex As Exception
&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox(ex.ToString)
End Try&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:19:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298476#M7747</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T14:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298477#M7748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Unfortunately, when I attempt to "Step Into" the function, it just launches ArcMap and goes into debug mode. The "Step Into" and "Step Over" tools become greyed out so I can't even diagnose where the exception is occuring.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 15:55:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298477#M7748</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2011-04-27T15:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298478#M7749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Unfortunately, when I attempt to "Step Into" the function, it just launches ArcMap and goes into debug mode. The "Step Into" and "Step Over" tools become greyed out so I can't even diagnose where the exception is occuring.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Actually, that's what I meant: step thru in debug mode by putting a stop somewhere.&amp;nbsp; You can hit F11 to move to the next line, F5 will continue with the full execution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Edit: also, Debugging means that it launches ArcMap.&amp;nbsp; This is expected.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 16:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298478#M7749</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2011-04-27T16:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298479#M7750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried placing the stop at several different points in the function, but regardless I get this error in the Immediate Window:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll
A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll
A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems vague, but I am trying to research what may be causing this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298479#M7750</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2021-12-11T14:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298480#M7751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I tried placing the stop at several different points in the function, but regardless I get this error in the Immediate Window:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll
A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll
A first chance exception of type 'System.InvalidCastException' occurred in PrecinctSearch2.dll&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;It seems vague, but I am trying to research what may be causing this.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is PrecinctSearch included as a reference in your assembly/project?&amp;nbsp; Is PrecinctSearch an assembly you have built?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;j&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:19:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298480#M7751</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T14:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: VB.NET - Set target feature class and select by attributes</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298481#M7752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;PrecinctSearch2 is the name of my VB project.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 18:31:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-set-target-feature-class-and-select-by/m-p/298481#M7752</guid>
      <dc:creator>MatthewLawton</dc:creator>
      <dc:date>2011-04-27T18:31:21Z</dc:date>
    </item>
  </channel>
</rss>

