ErrorProvider.DataMember プロパティ
監視するデータ テーブルを取得または設定します。
Public Property DataMember As String
[C#]
public string DataMember {get; set;}
[C++]
public: __property String* get_DataMember();public: __property void set_DataMember(String*);
[JScript]
public function get DataMember() : String;public function set DataMember(String);
プロパティ値
監視される DataSource によって指定されたデータ セットの中のデータ テーブルを表す文字列。通常、これは DataTable となります。
解説
DataMember は、 DataSource に基づくナビゲーション文字列です。
DataSource と DataMember を変更しても、実行時に競合が発生しないようにするには、 DataSource と DataMember を個別に設定するのではなく、 BindToDataAndErrors を使用する必要があります。
使用例
[Visual Basic, C#, C++] DataSource および DataMember と併せて ErrorProvider を使用し、データ エラーをユーザーに提示する例を次に示します。
Private Sub InitializeComponent()
' Standard control setup.
'....
' You set the DataSource to a data set, and the DataMember to a table.
errorProvider1.DataSource = dataSet1
errorProvider1.DataMember = dataTable1.TableName
errorProvider1.ContainerControl = Me
errorProvider1.BlinkRate = 200
End Sub 'InitializeComponent
'...
' Since the ErrorProvider control does not have a visible component,
' it does not need to be added to the form.
Protected Sub buttonSave_Click(sender As Object, e As System.EventArgs)
' Checks for a bad post code.
Dim CustomersTable As DataTable
CustomersTable = customersDataSet1.Tables("Customers")
Dim row As DataRow
For Each row In CustomersTable.Rows
If Convert.ToBoolean(row("PostalCodeIsNull")) Then
row.RowError = "The Customer details contain errors"
row.SetColumnError("PostalCode", "Postal Code required")
End If
Next row
End Sub 'buttonSave_Click
[C#]
private void InitializeComponent()
{
// Standard control setup.
//....
// You set the DataSource to a data set, and the DataMember to a table.
errorProvider1.DataSource = dataSet1 ;
errorProvider1.DataMember = dataTable1.TableName ;
errorProvider1.ContainerControl = this ;
errorProvider1.BlinkRate = 200 ;
//...
// Since the ErrorProvider control does not have a visible component,
// it does not need to be added to the form.
}
protected void buttonSave_Click(object sender, System.EventArgs e)
{
// Checks for a bad post code.
DataTable CustomersTable;
CustomersTable = customersDataSet1.Tables["Customers"];
foreach (DataRow row in (CustomersTable.Rows))
{
if (Convert.ToBoolean(row["PostalCodeIsNull"]))
{
row.RowError="The Customer details contain errors";
row.SetColumnError("PostalCode", "Postal Code required");
}
}
}
[C++]
private:
void InitializeComponent()
{
// Standard control setup.
//....
// You set the DataSource to a data set, and the DataMember to a table.
errorProvider1->DataSource = dataSet1 ;
errorProvider1->DataMember = dataTable1->TableName ;
errorProvider1->ContainerControl = this ;
errorProvider1->BlinkRate = 200 ;
//...
// Since the ErrorProvider control does not have a visible component,
// it does not need to be added to the form.
}
protected:
void buttonSave_Click(Object* /*sender*/, System::EventArgs* /*e*/)
{
// Checks for a bad post code.
DataTable* CustomersTable;
CustomersTable = customersDataSet1->Tables->Item[S"Customers"];
System::Collections::IEnumerator* myEnum = (CustomersTable->Rows)->GetEnumerator();
while (myEnum->MoveNext())
{
DataRow* row = __try_cast<DataRow*>(myEnum->Current);
if (Convert::ToBoolean(row->Item[S"PostalCodeIsNull"]))
{
row->RowError=S"The Customer details contain errors";
row->SetColumnError(S"PostalCode", S"Postal Code required");
}
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
ErrorProvider クラス | ErrorProvider メンバ | System.Windows.Forms 名前空間