What HowTo is referring to, is that you shouldn't directly call the click event of a button.

If you need to repeat the code that is executed in a button, move that code into it's own method. Then call this method from button the click event, and also in other places that you need it.

Does that make sense?

Gary