G
Gsurfdude
Hello,
I have a multi select list box control on a form and I need to return the
values of highlighted multi select items. Code
With Me.lstExtractRouteMulti
For Each varItem In .ItemsSelected
If Not IsNull(varItem) Then
Debug.Print
End If
Next
End With
In this, I need to return the values that are selected in the list box.
Using Me.lstExtractRouteMulti.Value returns Null
Thanks.
I have a multi select list box control on a form and I need to return the
values of highlighted multi select items. Code
With Me.lstExtractRouteMulti
For Each varItem In .ItemsSelected
If Not IsNull(varItem) Then
Debug.Print
End If
Next
End With
In this, I need to return the values that are selected in the list box.
Using Me.lstExtractRouteMulti.Value returns Null
Thanks.