Hello, my question is: What problems can arise?
Considering that it is not used Wait For Show_Completed
Thank you.
B4X:
Sub something1
Show("aaa")
End Sub
Sub something2
Show("bbb")
End Sub
Sub something3
Show("ccc")
End Sub
Sub Show( cTxt As String )
log(cTxt)
CallSubDelayed(Me,"Show_Completed")
End Sub
Considering that it is not used Wait For Show_Completed
Thank you.