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 row, col as integer
row = ubound(arrMyArray,2)
col = ubound(arrMyArray,1)
redim arrMyArray(col, row) ' keeps bounds
redim arrMyArray(-1) ' does not keep bounds
' in both cases, data is cleared.