If the underlying DataSource for the BindingSource is a DataTable,
then the object retrieved from the BindingSource by indexing it will
be a DataRowView. Below is code that shows how to get at a field once
you have a DataRowView. If you underlying datasource is something
other than a DataTable, then the object retrieved will be some other
type.
Dim drv As DataRowView =
CType(bindingSource1(bindingSource1.Position + 1), DataRowView) '
Dim someIntValue As Integer = CInt(drv("Col1")) ' Col1 is name
of column in DataTable
==================
Clay Burch
Syncfusion, Inc.