Let's say that I have to two subs:
Is it somehow possible to disconnect subB from subA once called? So that once subA calls subB, subA is ended while only subB continues running while subA has discontinued.
Code:
Sub subA()[INDENT]If (some condition)<some condition=""> is True Then</some>[/INDENT]
[INDENT=2]Call subB[/INDENT]
[INDENT]Else[/INDENT]
[INDENT=2]' Some code[/INDENT]
[INDENT]End If[/INDENT]
End Sub
Sub subB()[INDENT]'Some code[/INDENT]
End Sub
Is it somehow possible to disconnect subB from subA once called? So that once subA calls subB, subA is ended while only subB continues running while subA has discontinued.