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 sVal As String
For i = 0 To 1
For j = 0 To 1
sVal = sVal & test(i, j)
Next j
sVal = sVal & vbCrLf
Next i
MsgBox sVal
Dim sVal As String
For i = 0 To 1
sVal = sVal & test(i, 0) & test(i, 1) & vbCrLf
Next i
MsgBox sVal