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.
Function Matrix2(vStrArray() As String) As String()
' play with array
End Function
' A quick example if using it...
Dim strTest(2, 2) As String
Dim strings() As String
strTest(1, 2) = "Test"
strings = Matrix2(strTest)