How to add combobox in datagrid cell in vb.net 2005
i want to add a combobox in vb.net 2005 datagrid cell ... plz help me to do this
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hirendra SisodiyaPosted Sep 14, 2009, 12:46 AM
Dim grdCol as new DataGridViewComboBoxColumn
DataGridView1.Column.Add(grdCol)
If you want to bind this combobox with items you can try:
grdCol.items.Add("A")
grdCol.items.Add("B")