Guest_imported
New member
- Jan 1, 1970
- 0
I need to know how to make it so when some clicks on a name in one list box the person's Number appears in the other please help..
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If list2.ListIndex = -1 Then Exit Sub
For i = list2.ListCount - 1 To 0 Step -1
If list2.Selected(i) = True Then
listitem= list2.List(i)
List1.AddItem tablename
list2.RemoveItem i
End If
Next i