R
Rick Charnes
I don't seem to be able to assign a variable-sized array in a sub:
Dim strCode() As String
strCode(1) = "hello"
tells me "Subscript out of range". What am I doing wrong? Thanks.
Dim strCode() As String
strCode(1) = "hello"
tells me "Subscript out of range". What am I doing wrong? Thanks.