Sponser Link

Get multiple column value from Infragistics Ultracombo

In ultracombo in winform, you can show more than two columns in drop down or combo box. You have to just bind data source of combo box. You can get value of specific columns or all columns on selection or change value of combo box. The code is given below for get value from combo box.

If Not ucmb.SelectedRow Is Nothing Then

    txt1.Text = Trim(ucmb.SelectedRow.Cells("c1").Value)

    ucmb2.Value = Trim(ucmb.SelectedRow.Cells("c2").Value)

End If