Hello.
I have two quick questions, so I thought I'd better ask them in one post:
1. I don't want to see the logs for my previous run when I build and run my app, but even though I press the "clear" button and empty the log window and I've also checked the "Clear logs when deploying" in the IDE options, the log window still loads all the previous logs as soon as the app starts running. (I use B4A Bridge and my phone to run it) Any suggestions?
2. I'm using CallSub to call a public sub in my main activity from another activity:
But it doesn't call that sub. Is it not possible to use CallSub like that? (I tried using CallSubDelayed, but it messed up everything)
Thanks a lot in advance.
I have two quick questions, so I thought I'd better ask them in one post:
1. I don't want to see the logs for my previous run when I build and run my app, but even though I press the "clear" button and empty the log window and I've also checked the "Clear logs when deploying" in the IDE options, the log window still loads all the previous logs as soon as the app starts running. (I use B4A Bridge and my phone to run it) Any suggestions?
2. I'm using CallSub to call a public sub in my main activity from another activity:
B4X:
'In the MAIN activity
Public Sub Test_Sub
'Some code
End Sub
'In another activity that runs later
CallSub(Main, "Test_Sub")
Thanks a lot in advance.