G
Guest
Hi All,
How to convert a one dimensional integer array to a one dimensional array of
type string?
kd
How to convert a one dimensional integer array to a one dimensional array of
type string?
kd
Ken Tucker said:Dim arStr() As String
ReDim arStr(arInt.GetUpperBound(0))
Why not just 'Dim arStr(arInt.GetUpperBound(0)) As String'?
Cor Ligthert said:Why not just dim arStr(arInt.Lenght) as String?
I have a great tip for you.Because it will create an array that has 'Length' + 1 elements, which is
not desired.