how to exit current method outside the own method

Sep 1 2005 3:02 PM

hi

i want to exit sub / function outside the own method like this

public sub method1()
     'the procedure code
     call method2(1)
     'the remind procedure code
end sub

public sub method2(number as integer)
     if number=1
           'exit method1()
     end if
end sub


Answers (4)