How to clear the contents of an array??
Dim vsArray(2) as string
vsArray(0) = "1"
vsArray(1) = "2"
vsArray = "" <---- ????????? This is my question, how to zero the values inside this array?
Dim vsArray(2) as string
vsArray(0) = "1"
vsArray(1) = "2"
vsArray = "" <---- ????????? This is my question, how to zero the values inside this array?