共用方式為


如何:找尋有錯誤的資料列

當您使用個別的資料行和資料列時,資料錄有時可能會有錯誤。 您可以檢查 HasErrors 屬性,判斷錯誤存在於 DataSetDataTableDataRow

尋找有錯誤的資料列

  1. 檢查 HasErrors 屬性,判斷資料集當中是否有任何錯誤。

  2. 如果 HasErrors 屬性為 true,則逐一查看資料表集合,接著逐一查看資料列,尋找有錯誤的資料列。

    Private Sub FindErrors()
        Dim table As Data.DataTable
        Dim row As Data.DataRow
    
        If DataSet1.HasErrors Then 
    
            For Each table In DataSet1.Tables
                If table.HasErrors Then 
    
                    For Each row In table.Rows
                        If row.HasErrors Then 
    
                            ' Process error here. 
                        End If 
                    Next 
                End If 
            Next 
        End If 
    End Sub
    
    private void FindErrors() 
    {
        if (dataSet1.HasErrors)
        {
            foreach (DataTable table in dataSet1.Tables)
            {
                if (table.HasErrors)
                {
                    foreach (DataRow row in table.Rows)
                    {
                        if (row.HasErrors)
                        {
                            // Process error here.
                        }
                    }
                }
            }
        }
    }
    

請參閱

概念

準備您的應用程式以接收資料

將資料擷取至您的應用程式中

將控制項繫結至 Visual Studio 中的資料

在您的應用程式中編輯資料

驗證資料

儲存資料

其他資源

Visual Studio 資料應用程式的概觀

連接至 Visual Studio 中的資料

用來在 Visual Studio 中使用資料來源的工具