• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

VBA negotiation

You can... there are few excellent error handling mechanism.


ON ERROR GOTO X


if you write this line at the beginning of your code, it will take you to X whenever there is an error.


ON ERROR RESUME NEXT


if you use this, any errors will be ignored and next line of code will be executed.


ON ERROR GOTO 0


will reset the error handler.


play with these to learn how to use them.
 
Hey Chandoo,


m lucky man... you had replied..


Will play and get back to u if any query...


Regards

Istiyak
 
Back
Top