Thursday, August 26, 2004

My New Favoritest Loop

I used to use a lot of While loops in VB6, but not any longer. Now I am using a lot of Do Until loops. See with while, the loop runs while a condition is true. For example, while the value of X is less than 20, but now with the new Until loop, I can tell my loop to run Until the value of X is equal to 20. Not much of a difference, but I have found myself using Until loops all the time now. So they are my new favoritest Loop type. :)

And you thought my other posts where geeky.