All Answers

All Answers » Re: CombBox with Search Bar » Comments for "Re: CombBox with Search Bar"
  • ruben ribeiro
    Nice, it works, however im trying to add items to the usercombobox with a textbox inside and it doesnt show any items..
  • ruben ribeiro
    Even an empty usercombobox , im trying to do UserComboBox2.Items.Add(“My item,”) and it’s totally empty…
  • Luca (ITG)
    A UserComboBox doesn’t show any item by design, you have to implement the drop down panel however you like.
  • ruben ribeiro
    I understanded now, can i implement handlers to those controls?
  • ruben ribeiro
    And how do i give a TEXT to the usercombobox1 as soon as i select something?
  • ruben ribeiro
    example i select a label with the text: “Y” and i want to usercombobox to close and shows “Y” in the usercombobox . just like a combobox when u select smth u can still see what u selected.
  • ruben ribeiro
    Also i cant add controls to tuse usercombobox idk why, im tryind: Dim x as new label …. .. usercombobox1.items.add(label) even buttons its not working
  • Luca (ITG)
    You don’t need to add controls, just assign the drop down control. In there you can place whatever you like. It’s a “User”ComboBox, the implementation is up to you.
  • ruben ribeiro
    Sorry sir, could you please send me code example or source example?