Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear all,
I saw so programs use the code "On error goto 0". What does it mean actually and when should I apply this code to my vba program? Thanks in advance -- |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As written in VBA help
Disables any enabled error handler in the current procedure. -- HTH RP (remove nothere from the email address if mailing direct) "*¡¸ My-Ricky ¡¸*" wrote in message ... Dear all, I saw so programs use the code "On error goto 0". What does it mean actually and when should I apply this code to my vba program? Thanks in advance -- |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If there had been an error handler, such as On error resume next, or on
error goto MyLabel, then after this statement is executed, "normal" error handling is reinstated -- that is, as if there were no error handler; that is, if you get an error, you will see Excel's default/normal/usual error message. "*¡¸ My-Ricky ¡¸*" wrote in message ... Dear all, I saw so programs use the code "On error goto 0". What does it mean actually and when should I apply this code to my vba program? Thanks in advance -- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Question on "On Error GoTo skip" | Excel Discussion (Misc queries) | |||
Subroutine vs GOTO "On Error" | Excel Programming | |||
Subroutine vs GOTO "On Error" | Excel Programming | |||
Subroutine vs GOTO "On Error" | Excel Programming |