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.