I need to declare a two dimensional array that will return the Row and the cell's string value. My only solution is to return the row as a string like this.
Public GlobalArray(2, 100) As String
Can someone help me get more control than this? Maybe I should just declare it as a variant but this might open it up for problems later.
Public GlobalArray(2, 100) As String
Can someone help me get more control than this? Maybe I should just declare it as a variant but this might open it up for problems later.