DataGrid Preventing Some items from not displaying

WillBoss

Member
Joined
May 31, 2006
Messages
8
Programming Experience
Beginner
Hi

I have a datagrid connected to a database and basically there is one row that I do not want displayed as it contains data that should not be modified.

How can I do this?

Thanks
Will
 
Since your profile is .Net 2.0 I will advice in the DataGridView control, not the DataGrid control.
VB.NET:
DataGridView1.Rows(1).Visible = False
 
Back
Top