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.
Dim i As Long
Label1.Caption = ""
For i = 0 To List1.ListCount - 1
If List1.Selected(i) Then
Label1.Caption = Label1.Caption & List1.List(i) & vbCrLf
End If
Next i