Welcome to WindowsClient.net | Sign in | Join
Home > Learn > Windows Forms FAQs
Here are some frequently asked questions about Windows Forms and their answers.
DataTable dt = (DataTable) dataGrid1.DataSource; foreach ( DataRow row in dt.GetErrors() ) { row.RowError = string.Empty; foreach ( DataColumn col in dt.Columns ) row.SetColumnError( col, string.Empty ); }
Adam Chester