If using an array created via a Split() do I need to ReDim it if every time I use it as shown below? If yes, I have never used ReDim, please give example using below context.
Many Thanks!!!
'ComboBox Control Test
isComboDBField = false
for n = 1 to UBound(aComboTables)
aComboTemp = Split(aComboTables
, ","
if aComboTemp(0) = aFieldNames(i) then
isComboDBField = true
exit for
end if
next
Many Thanks!!!
'ComboBox Control Test
isComboDBField = false
for n = 1 to UBound(aComboTables)
aComboTemp = Split(aComboTables


if aComboTemp(0) = aFieldNames(i) then
isComboDBField = true
exit for
end if
next