VBA hurts - a lot
Today i had to make some changes to an in house macro and it just reminded me of the fact that VBA causes brain damage. I really dislike this language and try to avoid it as much as i can. An example of it's stupidity is the fact that it uses the same operator for both assignment and comparison. Then the standard VBA standard library is just too poor, there doesn't seem to be a method to remove all objects from a given collection which results in selfmade solution like the following.
Do While mycollection.Count > 0
mycollection.Remove (1)
Loop
Enough ranting for today, hope you don't have to use this crap, too bad that i am not working in the *nix world.
Marc
Comments (0)
There are currently no comments available
