with callsubplus we can do:
can we do the same with a sub i create "mysub" ?
B4X:
CallSubPlus("DoSomething", 1000, 5)
'...
Sub DoSomething(Tag as Byte)
'......
End Sub
can we do the same with a sub i create "mysub" ?
B4X:
MySub("DoSomething", 5)
'...
Sub DoSomething(Tag as Byte)
'......
End Sub