Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("*") query.Text = FindAddress.Text query.Where = [Address] Like FindAddress.Text query.ReturnGeometry = True query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query)
query.Where = string.Format("Address LIKE '%{0}%'", FindAddress.Text.Trim());
Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("PID") query.Text = FindAddress.Text query.ReturnGeometry = True query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query)
Dim query As New ESRI.ArcGIS.Client.Tasks.Query() query.OutFields.Add("*") query.Text = FindAddress.Text query.ReturnGeometry = True query.OutSpatialReference = MyMap.SpatialReference queryTask.ExecuteAsync(query) MessageBox.Show(FindAddress.Text)
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.