top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

how to convert datagridview column into combobox column dynamically!!

+2 votes
691 views
how to convert datagridview column into combobox column dynamically!!
posted Jul 9, 2014 by Muskan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
With extractDataGrid
            Dim ColumnCB As New DataGridViewComboBoxColumn

            With ColumnCB
                .HeaderText = "SPECIFICATION"
                .Width = 80
                .Items.Add("Foo")
                .Items.Add("Car")
            End With

            .Columns.Remove(extractDataGrid.Columns(6))
            .Columns.Insert(6, ColumnCB)

        End With
answer Oct 29, 2016 by anonymous
Similar Questions
+2 votes

I want it to be changes as soon as I change the value in some other cell!

+5 votes

Can someone help me with the concept of Multicolumn Combobox in vb.net.
How to implement? any example will be appreciated.

+2 votes

how to change size of the panel dynamically vb.net

...