I've been mucking about with a custom ArcReader application in VB.
I have a DataGrid connected to a Text Box query that searches Parcel records and filters that Data Grid to only the selected records in the query. No prob.
DataGridView1.DataSource = Me.NBMCA_DATADataSet.NBMCA.Select("Parcels_Arn Like'" & Parcel & "'")
My next step is to try and zoom the Map focus to the selected results.
In the .pmf the parcel layer is called "Assessment Parcel" in the ToC. The display field is called {ASSESSMENT}.
How do I query upon a single Map Layer in the .pmf, based on Attribute Data in the drawing/shape?
I've tried dissecting the AttributeQuery example, but it picks all the layers in the .pmf and allows feature query choice. I just want to query the Parcel fabric, one layer.
Any assistance would be greatly appreciated, even if its a hint or two.