Test for multiple-selections in a combo box

SupYo

New member
Local time
Today, 15:53
Joined
Aug 19, 2011
Messages
7
Hi so is there a way to see if a user checked more than one value in a multi-select combo box? I know ListIndex tells you which value has been chosen as long as only one has been selected, but I need to know if more than one has been selected so that I can reset the record that the combo box is bound to. ListIndex doesnt work if there are multiple selections.
 
Not sure what you mean by "...reset the record that the combo box is bound to," but here's an approach that steps thru the selected items, adding up the total. It's the same way you step thru to see what items have been selected:
Code:
Private Sub MyComboBox_AfterUpdate()

Dim varItem As Variant

Dim Hits As Integer
Hits = 0

For Each varItem In Me.MyComboBox.ItemsSelected
  Hits = Hits + 1
Next varItem

Me.MyTextBox = Hits

End Sub
I've assigned the number, held by the variable Hits, to a Textbox, but you can do whatever you like with it, of course.

Linq ;0)>
 
Last edited:
Why not use:

Me.MyTextBox = Me.MyComboBox.ItemsSelected.Count


But I didn't think a combo could handle multiple selections. It doesn't the Multi Select option in the properties window that the Listbox has. However it does have the ItemsSelected collection which seems odd.

Help gives:
ComboBox.ItemsSelected Property
You can use the ItemsSelected property to return a read-only reference to the hidden ItemsSelected collection. This hidden collection can be used to access data in the selected rows of a multiselect combo box control.


So how do we get a multi-select combo?

Chris
 
Just change the Multi Select option in the properties window of the combo box.
But the option does not exist - at least I can't find it.

I can easily find it in a Listbox but not a Combo. Moreover, if you look at the ComboBox class, there is no mention of the MultiSelect property.

Try this and you will get "Method or data member not found"
Code:
Debug.Print Me.Combo0.MultiSelect

Hence my confusion that ComboBox has the ItemsSelected collection - it doesn't make sense. I think it is just redundant.

Chris
 
Chris

I'm sorry. You are of course quite right. Only the list box supports multiple selections.
 
Hi Chris

I think the only thing I have that you are missing out on is my confusion. Be happy that it is so :D
 
So how do we get a multi-select combo?
By upgrading to versions 2007 or 2010! One of the new, added features of those versions!

BTW,

Me.MyTextBox = Me.MyComboBox.ItemsSelected.Count

works just fine!

Linq ;0)>
 
Last edited:
By upgrading to versions 2007 or 2010! One of the new, added features of those versions!

BTW,

Me.MyTextBox = Me.MyComboBox.ItemsSelected.Count

works just fine!

Linq ;0)>
So how do you multiselect items in a Combo in 2010? There is no MultiSelect property like there is in the listbox. So I can't turn on multi-select. Or am I just missing some fancy keystrokes?

:confused:

Chris
 
That I don't know! Don't run 2007/2010 yet, just know that they added this feature.
 
To get a multi-select combo box in 2007 you go into the table in Design View that has the field your combo box is bound to and, under the LookUp tab, select Allow Multiple Values. This creates the multiple checkboxes in your combo box dropdown.

And Linq, I tried using your method but I must've screwed something up because it doesn't seem to recognize a Combo Box. Here's my code:

Dim ctrl As Control
Dim varItem As Variant
Dim Hits As Integer
Hits = 0

For Each ctrl In Me.Controls
If ctrl.ControlType = acCheckBox Then
ctrl.Value = True
ctrl.Visible = True
End If
If ctrl.ControlType = acComboBox Then
For Each varItem In ctrl.ItemsSelected
Hits = Hits + 1
Me.lblTest.Caption = Hits
Next varItem
ctrl.Visible = False
End If
Next

If Hits > 0 Then
DoCmd.RunCommand acCmdUndo
End If

The label I have never changes its initial value so I assume its not recognizing the combo box. And I've only been teaching myself this for a few days so I'm sure this code kinda weird.
 
To get a multi-select combo box in 2007 you go into the table in Design View that has the field your combo box is bound to and, under the LookUp tab, select Allow Multiple Values. This creates the multiple checkboxes in your combo box dropdown.
That's new to me :). So I guess there's no chance of an unbound multi-select combo. Ho hum.

The keyword is multi-value. This is a new kind of field that can store multiple values. You'd think a multi-valued field would be a string that just needs to be parsed. Or maybe even a collection like we were looking at. But it's actually a recordset.

So the number of selected items is given by:

Code:
Dim rs As DAO.Recordset

Set rs = Me.Recordset.myFieldName.Value
rs.MoveLast
Debug.Print rs.RecordCount

Set rs = Nothing

I think the jury is out on the usage of the multi-valued field. The problem is that accessing elements requires a bit of code like the above. Also, the multi-valued field is unnatural to normalisation and therefore is not very compatible with some SQL.

Chris
 
That's new to me :)...I think the jury is out on the usage of the multi-valued field.
Actually, the jury of experienced Access developers pretty much voted to give the multi-valued field the death penalty! As you said, it violates Normalization so much that you have to ask "What were they thinking about?"

Linq ;0)>
 
Actually, the jury of experienced Access developers pretty much voted to give the multi-valued field the death penalty! As you said, it violates Normalization so much that you have to ask "What were they thinking about?"

Linq ;0)>
So the multi-select combo won't be high on your list for reasons to upgrade? ;)
 

Users who are viewing this thread

Back
Top Bottom