A family of Microsoft relational database management systems designed for ease of use.
What exactly is it that you're trying to do? Scott demonstrates one method of how to handle a control and the ItemsSelected property. If you want to do this outside of the form module, you can pass the control by reference as I mentioned before.
Example:
Function ProcessItemsSelected(ControlObject as Control) As String
Dim varItem As Variant
Dim strReturn As String
strReturn = ""
For Each varItem In ControlObject.ItemsSelected
If (strReturn<>"") Then
strReturn = strReturn & vbCrLf
End If
strReturn = strReturn & ControlObject.ItemData(varItem)
Next varItem
ProcessItemsSelected = strReturn
End Function