Click here to Skip to main content
16,005,037 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do i remove or hide the first row in the datagridview.i tried this:
datagridview.rows(0).visible = false
but i get this error: (Row associated with the currency manager's position cannot be made invisible.)
Posted
Updated 5-May-12 6:48am
v2

The solution to a similar problem is given here
how to invisible a row of Datagridview ?[^]
Row associated with the currency manager's position cannot be made invisible[^]
I think it may be helpful.
 
Share this answer
 
Comments
braop 5-May-12 13:02pm    
thnkx
VJ Reddy 5-May-12 13:18pm    
You're welcome and thank you for the response.
Abhinav S 5-May-12 13:19pm    
Yep. Similar answer with links. 5.
VJ Reddy 5-May-12 13:26pm    
Thank you, Abhinav.
Try
dataGridView.CurrentCell = Nothing
dataGridView.Rows(0).Visible = False
 
Share this answer
 
Comments
braop 5-May-12 13:03pm    
thnks, it wrks
Abhinav S 5-May-12 13:19pm    
You are welcome.
VJ Reddy 5-May-12 13:18pm    
Good answer. 5!
Abhinav S 5-May-12 13:19pm    
Thank you VJ.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900