S ST500 Active Member Licensed User Oct 31, 2021 #1 Hello community, I‘d like to access the LogCat logs from Starter. For RunOnGUIThread I have to Dim the right Sub from Starter. The Sub‘s name is for e.g. LogCat_Sender. How can I Dim it? Thank for your help. Have a nice sunday. Best regards. Martin
Hello community, I‘d like to access the LogCat logs from Starter. For RunOnGUIThread I have to Dim the right Sub from Starter. The Sub‘s name is for e.g. LogCat_Sender. How can I Dim it? Thank for your help. Have a nice sunday. Best regards. Martin
Erel B4X founder Staff member Licensed User Longtime User Oct 31, 2021 #2 LogCat, which is a special case, will raise the event on a background thread. You can use CallSubDelayed to delegate the event to the main thread. Upvote 1
LogCat, which is a special case, will raise the event on a background thread. You can use CallSubDelayed to delegate the event to the main thread.
S ST500 Active Member Licensed User Oct 31, 2021 #3 Erel said: LogCat, which is a special case, will raise the event on a background thread. You can use CallSubDelayed to delegate the event to the main thread. Click to expand... Thanks a lot Erel. This is the best answer. I don‘t need to handle with the Threading library. Upvote 0
Erel said: LogCat, which is a special case, will raise the event on a background thread. You can use CallSubDelayed to delegate the event to the main thread. Click to expand... Thanks a lot Erel. This is the best answer. I don‘t need to handle with the Threading library.