I have seen that many people write code like this:

HTML Code:
   Dim i    as long
...

   i = i + 1&
Can't they simply write it like this:

HTML Code:
   Dim i    as long
...

   i = i + 1
What is the benefit of that and sign after the number?

thanks,