Thread: Vector help
View Single Post
  #3 (permalink)  
Old 01-22-2008, 09:24 PM
king_arthur king_arthur is offline
Member
 
Join Date: Jan 2008
Posts: 3
king_arthur is on a distinguished road
ok!
thx,i solve the problem...

i used if(vector.get(i)!=vector.get(i+1)) instead of if(!vector.get(i).equals(vector.get(i+1)) and that was problem...

later i tried with if(!vector.get(i).equals(vector.get(i+1)) and it worked fine...

but thx for help!

see you around!
Reply With Quote