I want to implement a dynamic multi dimension array to store some records in my project. Please Help me
Try this:
Dim ary(,,) As Integer ReDim ary(10, 3, 5) ary = Nothing ReDim ary(2, 3, 4)