Is this code
Code:
Dim x as integer,a as integer
x=listbox.count-1
for a= 0 to x
next a
faster than

Code:
Dim a as integer
for a= 0 to listbox.count-1
next a