View Single Post
Old Dec 17th, 2006, 10:43 AM   #2
kyndig
Newbie
 
Join Date: Jan 2006
Posts: 7
Rep Power: 0 kyndig is on a distinguished road
You cant do i++ in vb.
 
i = i + 1 
cnt = c + 1

or use a for loop

for cnt = 0 to 10
  for i = 0 to 10
     total = total + quiz(i)
  next i
next cnt
kyndig is offline   Reply With Quote