4
Answers

how to exit current method outside the own method

amin choroomi

amin choroomi

19y
6.5k
1

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)