1
Answer

Auto formatting gridview Column on double click

Anil Gowda

Anil Gowda

9y
281
1
Hi,
 
I  have a grid view which has 15 columns. when i bind data to the grid view, columns are not auto formatted but still i can drag the column to see entire content.
 
but my requirement is when user double click on any column it should be auto formatted(Auto formatted means i should be able to see all the rows of the column with no width problem).
 
(note:Columns are adjustable i can drag the columns to see the full content) 
 
can any one help me to achieve this?
Answers (1)
0
Ranjit Powar

Ranjit Powar

NA 8.1k 496.6k 7y
Use this code in selected index changed event of combobox
 
for(int i=0; i<dataGridView1.Rows.Count;i++)
{
   dataGridView1.Rows[i].Cells[6].Value=comboBox1.SelectedValue;
}
 
 
Accepted
0
Mayank Jani

Mayank Jani

NA 154 3.8k 7y
Hii Ranjit,
thank you for your reply. there is just one little change I have to do that is instead of 'combobox1.SelectedValue' I added 'SelectedItem'. it is because when I used SelectedValue, and changed the value from combobox, all the values went blank...
 
'combobox1.text' also works.
 
anyway, my problem is solved.
thank you once again.
 
Mayank Jani
Next Recommended Forum