I got this bidimentional array
Public dispositivos(0, 1) As String
after i fill the array:
dispositivos(filas, 0) = nodo.Id
dispositivos(filas, 1) = nodo.tipo
filas = filas + 1
I tried to redim it with :ReDim Preserve dispositivos(filas, 1), but always visual basic says that I only can redim the right side of the array
I would like to know how to redim the left side of the array only
Best regards