Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How should I adda datagrid column dynamically on selectedindexedchanged?

share|improve this question
WinForms, ASP.NET or WPF? – Henk Holterman Jul 27 '09 at 10:32
What exactly do you wanna do? Have a Look at the Columns-Collection (DataGridView.Columns()), it's add Method and the Contrusctor of the DataGridViewtextBoxColumn class. – Bobby Oct 5 '09 at 9:41

2 Answers

I assume the Combobox contains datagrid-columns (or Datatable columns) ?

You can simply set the Visible property to false, when you have found the column.

In WinForms:

 Dim x as Integer = ...
 dataGridView1.Columns[x].Visible = False

But please take a look at your question, it contains virtually no useful information.

share|improve this answer

In side the selection change event paste this coding

Datagridview1.columncount += 1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.