ループの条件で使用する配列の次の値を取得するにはどうすればよいですか。
dim x(10) as integer
dim d1,d2 as integer
for i = 0 to 10
d1 = x(1) 'first value in an array e.g. is 10
d2 = x(2) 'second value in an array e.g. is 20
if (d2-d1) > 1 then
Msgbox "Item Count"
else
msgbox "Item Deleted"
end if
next i