Browse By Tags

Sorry, but there are no more tags available to filter with.
  • UltraCombo with Dictionary as Datasource

    Hi

    We use a UltraCombo as follow:

    Dim list As New Dictionoray(Of Object, String)
    list.Add(22, "two")
    list.Add(33, "three")
    cbo.DropDownStyle = DropDownList
    cbo.DataSource = list
    cbo.DisplayMember = "Value"
    cbo.ValueMeber = "Key…