Mulitple Selections in a list box

  • Thread starter Thread starter Jengo
  • Start date Start date
J

Jengo

Guest
How do you, through code, make a list box select more than one selection, when the mulitselect function is on. For example:

if tmp = Yes then
'select that one
if tmp1 = Yes then
'keep the previous selected one, and select the new one to.
????? Any help?
 
For i = 0 To [LIST_NAME].Listcount - 1
if [LIST_NAME].Selected(i) Then
'selected
...
End If
Next

glad to answer
 

Users who are viewing this thread

Back
Top Bottom