Is there a combobox with a checkbox yet?

0
0

I don’t see one, but it may be named differently than VWG had it.

I saw a post about it, but that was from some time ago and I don’t recall it saying if there was going to be one added.

Thanks

  • Shawn Ramirez
    In case there are others that have this same question. I was able to do this using a UserComboBox (called UserComboBox1) and a CheckedListBox (CheckedListBox1) When you load the form wire up the CheckedListBox Me.UserComboBox1.DropDownControl = Me.CheckedListBox1 Me.CheckedListBox1.DataSource = lstWorkingPages Me.CheckedListBox1.DisplayMember = “Name” Me.CheckedListBox1.ValueMember = “Name” Then to see what is checked For Each itm As Object In Me.CheckedListBox1.CheckedItems lstPages.Add(itm.Name) Next
  • You must to post comments
0
0

Yes I do.

  • You must to post comments
0
0

Do you mean a drop down with a checked listbox?

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.