How do you hide the columns in datagrid?
Answers were Sorted based on User's Feedback
Answer / s
DataGridTableStyle Dts1=new DataGridTableStyle();
datagrid1.TableStyles.Add(Dts1);
Dts1.GridColumnStyles[0].Width=0;
Dts1.GridColumnStyles[1].Width=390;
Dts1.GridColumnStyles[1].HeaderText="Title";
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / surya
In the html source of datagrid, add "visible=true" to the
item template of corresponding row.
| Is This Answer Correct ? | 1 Yes | 0 No |
How many number of events does the Timer controls ?
What is the synonym of form?
Explain the difference between listindex and tab index?
What are the three states set in a checkstate property?
I have two combobox .. and i have some items in both combobox now i need to check the item in both combobox if same item is Present in both combobox i need to display that item in message box
how barcode print on the win form
What is form technology?
Can you create a tabletype of recordset in Jet - connected ODBC dbengine?
what are container objects?
Explain how to net forms the windows?
Tell a very common use of private constructor?
How to create a set up in vb.net for desktop application please say steps with examples?