2016-06-24から1日間の記事一覧

DataGridView セル 空白 検出

DataGridViewの指定セルが空白であるかを見つけるためのコード 「Validated」イベントを使用する。 Private Sub DataGridView1_Validated(sender As Object, e As EventArgs) Handles DataGridView1.Validated If DataGridView1(0, 0).Value Is Nothing Then…