1

私には がありDataGridViewButtonCell、プロパティをTrueDataGridViewに設定したかったのです。Visible

私が試してみました:

DataGridView1.Rows("number of row i want").Cells("number of cell i want").Visible = True

残念ながら、プロパティvisibleread onlyです。

コードは次のとおりです。

Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
        'does not work
        DataGridView1.Rows(e.RowIndex).Cells(6).Visible = True         
End Sub

どうすればこれを達成できるか知っている人はいますか?

ありがとう。

4

2 に答える 2