DataGridViewのDataErrorイベントハンドラに、以下のコードを加えるだけで、入力型エラー程度はハンドリングできる。
1 2 3 4 5 6 7 |
private void DataGridView1_DataError(object sender, DataGridViewDataErrorEventArgs anError) { if (anError.Exception.Message.Length > 0) MclsLogin.MsgBoxShow(this.Text, 32004, anError.Exception.Message); } |
コメント