ErrorProvider.BindToDataAndErrors(Object, String) Method

Definition

Provides a method to set both the DataSource and DataMember at run time.

public:
 void BindToDataAndErrors(System::Object ^ newDataSource, System::String ^ newDataMember);
public void BindToDataAndErrors (object newDataSource, string newDataMember);
public void BindToDataAndErrors (object? newDataSource, string? newDataMember);
member this.BindToDataAndErrors : obj * string -> unit
Public Sub BindToDataAndErrors (newDataSource As Object, newDataMember As String)

Parameters

newDataSource
Object

A data set based on the IList interface to be monitored for errors. Typically, this is a DataSet to be monitored for errors.

newDataMember
String

A collection within the newDataSource to monitor for errors. Typically, this will be a DataTable.

Remarks

To avoid conflicts at run time that can occur when changing DataSource and DataMember, you should use BindToDataAndErrors instead of setting DataSource and DataMember individually.

Applies to