View Single Post
  #3  
Old 07-11-2002, 11:10 AM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
when you set an array, it usually looks something like this:
0/{0,0,0,0}
(that was if i set an array with a length of 4)
the 0 in front (the 0/) is actually the this.items (the rest being the array parts)
so your for loop right now is basically
for(a=0;a<0;a++)
Reply With Quote