Hi Guhan,
Of course, if you'd use "On Error Resume Next" and if you DO check the Err variable after each statement that might generate an error, then yes, there is nothing wrong with that. The problem with this inline approach is (like the article said) that it is just too easy to forget the checking. The structured exception handling using 'Try Catch', while having its own quirks, is far more robust, elegant (and modern;-) that the inline approach.
Just my $0.2
Palo