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.
Sub Main
Dim sArray(2) as string
sTest = "John,Q,Public"
isArrayCnt = 0
While instr(sTest,",")
sArray(isArrayCnt) = Left(sTest,instr(sTest,",")-1)
sTest = right(sTest,len(sTest) - instr(sTest,","))
isArrayCnt = isArrayCnt+1
Wend
sArray(isArrayCnt) = sTest
For x = 0 to 2
msgbox sArray(x)
Next
End Sub