Using Databinding and ADO components with ArcGIS Mobile

The Dotnet Databinding components provide functionality to navigate though tabular data. By using these components with the datatables from the Mobile layers, one can quickly access and navigate the table's records or features. Once the linkage exists between the databinding components and the datatable, the functionality of browsing rows or moving through the table is available.

FeatureDataTable FDTable ; 
// use just the selected features
FDTable = selectionMapAction1.SelectedFeatures[comboBoxLayers.SelectedIndex];
bindingSource1.DataSource = FDTable;
textBoxValue.DataBindings.Add(new Binding( "Text", bindingSource1 , TSComboBoxFields.Text, true));

Where to get the sample

The sample is available for download from here.


9/20/2011