P
Paul M
which is better coding performance wise?
* "Paul M said:which is better coding performance wise?
----------------------------
for x as integer = 1 to 10000
'.......
next
----------------------------
or
----------------------------
Dim x as integer
for x = 1 to 100000
........
next
----------------------------
Paul M said:which is better coding performance wise?
----------------------------
for x as integer = 1 to 10000
'.......
next
----------------------------
or
----------------------------
Dim x as integer
for x = 1 to 100000
........
next
----------------------------
I use the second "old" when I needs to exit a for loop and want to have thecontext menu when you click on the word "Integer" does not work (yet). Well,
rarely used with Integer, but with other data types.
* "Cor Ligthert said:"Armin > I still prefer the "old" (2nd) version because "go to definition"
in the
I use the second "old" when I needs to exit a for loop and want to have the
latest index which cannot with the first.