Empty Array?
I have an array in my program:
Dim Record( ) As String
I have then used the command
ReDim Preserve Record(UBound(Record) + 1) ' Keeps the old values
However i need to clear this array at a certain stage, but am stuck on how to go about clearing its content? :confused:
Any suggestions would be appreciated.

