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.
For Each item In ListBox2.Items
If item.Selected = True Then
'--Note: if item.Value doesn't work use item.Text
[red]sFields += "[" & item.Value & "], "[/red]
End If
Next
If sFields.Length > 2 Then
[red]sFields = sFields.Substring(0, (sFields.Length - 3))[/red]
End If