ComboBox.ItemsSelected.Count

SupYo

New member
Local time
Today, 14:35
Joined
Aug 19, 2011
Messages
7
Alright so I have no idea why this code is wrong and I haven't found any reason online why it shouldn't work, but I'm sure it's just something stupid. I have a multi-select combobox in access 2007 and for some reason the ItemsSelected.Count always reads 0 no matter what is selected. What am I doing wrong in this code?

Private Sub Command10_Click()

Dim intL As Integer
intL = Me!Combo4.ItemsSelected.Count
Label8.Caption = intL

End Sub
 
I don't think you can select mutiple items in a combo box. So the collection of SelectedItems is never built.
In a listbox you can use this property if you set the MultiSelect property, but the combo doesn't have a MultiSelect property.
Mark
 
No, Access 2007 definitely can, but now I think it's not working because of a bug or something. The help menu distinctly says you can use ItemsSelected.Count for both listbox and combobox, but I just tried the exact code with a listbox and it works. That's annoying.
 
The OP is correct, Mark, MultiSelect was extended to include Comboboxes with version 2007.

And I have no idea why the code doesn't work here, as it works, as written, for me.

What happens when you click the button? Does an error message appear? If so, what message?
  • Are you absolutely sure the Combobox is named Combo4?
  • Are you absolutely sure the Label is named Label8?
  • Are you absolutely sure that the MultiSelect option is selected?
Linq ;0)>
 
I've got Access 07 and there is no MultiSelect property in the object browser for a combo. Also, if I try to reference this member in code I get a compile error: Method or data member not found, and it highlights the text MultiSelect.

To be clear, the code as posted works for me too. The combo has an ItemsSelected property, and the value of the ItemsSelected.Count property is zero. I would expect this if the MultiSelect property was set to 'None', at least that is how it works for a ListBox.

But Linq, if you double check, do combos in your version have a MultiSelect Property? Are you running 2007 or 2010?
Thanks,
Mark
 
Mark:

The combo has to be bound to a multi-valued field. If it isn't then it isn't multi-select.
 
Bob, thanks for solving the mystery.
Mark
 
Linq,

I attached a mock database which shows the problem. There are no errors and everything seems to be functioning correctly. ItemsSelected.Count just keeps returning 0 no matter what I select. I found a way around by inputting a hidden listbox with the same row source and control source and just controlling the listbox instead. Because they have the same sources, the combobox mimics whatever the listbox does so I got it to work. But if you found a way to make the combobox work on its own I'd like to know. It was giving me grief for quite some time. Thanks!
 

Attachments

You can't check for IsSelected that way with a multi-valued field. Using your database sample above, you would use this method instead:
Code:
Dim rst As DAO.Recordset
Dim strSQL As String
 
strSQL = "SELECT jkdfslkjdsf.Value FROM tblDummy WHERE ID = 1"
Set rst = CurrentDb.OpenRecordset(strSQL, , dbOpenForwardOnly)
 
Me.Label8.Caption = rst.RecordCount
 
rst.Close
 
Set rst = Nothing

Although I haven't been able to try it with a record that hasn't been saved yet.
 
SupYo,

Did we not cover all this here? And I gave the same solution as Bob in post 13. Did you try it?

Anyway, the conclusion I have drawn is that IsSelected is redundant despite what the help says.

The lightbulb came on for me when you pointed out how to make the combo multi-select.

This multi-select combo isn't like a Listbox at all. With a listbox, the multiple selections are held by the control. They are not stored in the underlying recordsource.

The multi-select combo is a hybrid of a standard combo combined with a multi-valued field (mvf).Therefore, it has to be treated it as a mvf as far as I can gather (and Bob confirms this) i.e. use a recordset to examine the values.

Just to add for the benefit of those who haven't tried the multi-select combo, the combo looks like a list with tick boxes next to it. But unlike a list box, there are OK/Cancel buttons at the bottom of the list. The selected values are only held if the OK button is pressed.

@Bob: sorry if I've re-covered your points.

Chris
 

Users who are viewing this thread

Back
Top Bottom