I'm in the process of upgrading several applications created by another person, and have an issue with arrars. In nearly all the programs they wrote, they started off declaring single dimension arrays
Public dtBSTZones() AsDate
and then later in the program may or may not alter them to multi dimensional arrays
ReDimPreserve dtBSTZones(2, intCount)
ReDim can't change the number of arrary in vb.net
Is there any way around / to fix this?
Public dtBSTZones() AsDate
and then later in the program may or may not alter them to multi dimensional arrays
ReDimPreserve dtBSTZones(2, intCount)
ReDim can't change the number of arrary in vb.net
Is there any way around / to fix this?