2010-05-26 3 views

답변

6

사용 On Error GoTo은 특정 레이블로 분기합니다 :

Function YourFunction() { 
    On Error GoTo ErrorLabel 
    ... your code ... 
    Exit Function 
    ErrorLabel: 
    YourFunction = yourspecificvalue 
} 
관련 문제