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
Private Sub Command10_Click()
Dim intL As Integer
intL = Me!Combo4.ItemsSelected.Count
Label8.Caption = intL
End Sub