Hi Again.

I'm sorry but I have this annoying question:

I have an array:
VB Code:
  1. Dim MyArray() as tMyType
After a while it gets many cells. Say it's now at 1 to 5 size.
I want to delete a middle cell, I delete it and I want to refix the size to 1 to 4.
How can I do it?
When I do:
VB Code:
  1. Redim Preserve MyArray(1 to 4)
It gives me an error.

Thank you in advance,
Arie.