views:

292

answers:

1

Using vb.net. How I lock a specific cell in the DataGridView (not a complete column)?

+1  A: 

You'll want to set the DataGridViewCell.ReadOnly property to true

Jay Riggs