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.
Private Sub cmbMessage_Click()
Dim i As Long, strMsg As String
For i = 0 To Me.lbAddy.ListCount - 1
strMsg = strMsg & Me.lbAddy.List(i) & "; "
Next i
strMsg = Left(strMsg, Len(strMsg) - 2)
MsgBox strMsg, vbInformation
End Sub