I hate it when I download a sample(from planet-source-code or something) and the code is really badly formatted,
for example, Variables are left un-declared, variables arent names right, and when the code is not indented.
I know they are spending there time to give people code samples, but if my code was formatted badly like that, I would not even submit it until it was cleaned.

it is hard to read, and most of the time its ugly,
I always make my code perfectly formatted, it may not be the best, or the most well commented but it looks nice and is easy to read..

for example.

Code:
For dumbvar = 0 To 10
If dumbvar = 1 Then
MsgBox dumbvar
End If
Next dumbvar

'and
Dim Counting As Long
  For Counting = 0 To 10
    If Counting = 1 Then
      MsgBox Counting
    End If
  Next
now this is a small demo and it doesnt make that much difference, but when you start getting into really long code, that is when it starts to get very hard to read.

I want to know who else finds this really annoying.