Will this cause any problems?
iCarli = 1
Do While .SelectSingleNode("//ROWSET/ROW/VENDORPARTNUM" & CStr(iCarli)).Text <> EMPTY_STRING
'Statements here for setting up array and its assignment
iCarli = iCarli + 1
Loop Until iCarli = 10
The point here being that I need to use the two conditions, node is not empty and the counter cannot exceed 9 without throwing some unforeseen error.
(I know that I could use the If iCarli = 10 Then Exit Do).
Thoughts?
Thanks