You've all met them: That one bug in the program that takes 5 (with an upper case F, for good reasons) hours to track down. And it turns out you missed an "a" somewhere.

Or maybe just the stupid stupid bugs that you write in without even realising in. (writing "For each A between 1 and 10" instead of For a = 1 to 10 comes to my mind, hehe)

I just though I'd share some of the wonderful things I've had to find before.

1: y\x -> int(y/x) (rounding is different )
2: oops, forgot to put "a=a+1" in that "do while a < 100" loop with no doevents in it, hehe..
3: No option explicit (WORST MISTAKE EVER)
4: Hum, maybe I should've put a + instead of a ^.

Go on... share.