Click here to Skip to main content
15,884,040 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
hello,
Hi guys, i need help on how to hide a column in a datagridview in compact framework 5.0
with a list as a data source
Posted
Comments
Code_Linc 10-Jan-13 8:02am    
thanks but that does not work in compact framework. I meant hiding columns on a grid in a smartDevice.

1 solution

MAke the Visible for the column to false.

this.DataGridView.Columns[0].Visible = false;


refer the below link

http://msdn.microsoft.com/en-us/library/bb383893(v=vs.90).aspx[^]
 
Share this answer
 
v2

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