W WillBoss Member Joined May 31, 2006 Messages 8 Programming Experience Beginner Jul 26, 2006 #1 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
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
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,828 Location Norway Programming Experience 10+ Jul 26, 2006 #2 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 Upvote 0 Downvote
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
W WillBoss Member Joined May 31, 2006 Messages 8 Programming Experience Beginner Jul 26, 2006 #3 Lovely...That did the trick. Thanks Upvote 0 Downvote