Weary old eyes, getting (is) late, ... . Can someone (please Lords of PB) spot what's wrong here? The first array doesn't expand while the second does.
'
=====================================================
To disagree with three-fourths of the British public
is one of the first requisites of sanity.
Oscar Wilde
=====================================================
'
Code:
s3$ = Using$(" #, #, #, ", UBound(Record_Info()), UBound(Index_Array$()), rn) ? s3$,,"Don't Save yet!" ReDim Preserve Record_Info (UBound(Record_Info()) + 1)'<<< Does not increase ReDim Preserve Index_Array$(UBound(Index_Array$()) + 1)'<<< Does increase rn = UBound(Record_Info())'<<< Does not increase s3$ = Using$(" #, #, #, ", UBound(Record_Info()), UBound(Index_Array$()), rn) ? s3$,,"Don't Save yet!" '
To disagree with three-fourths of the British public
is one of the first requisites of sanity.
Oscar Wilde
=====================================================
Comment