Wish "Default Parameter Value" of a SUB - William Lancee (first post)    Oct 15, 2022   (2 reactions) The 2 in Substring2, CallSubDelayed2, Initialize2 refers to the version#. But for Substring that coincides with the # of parameters. In CallSubDelayed2, the number of parameters is 3. In Initialize2 the # of parameters could be anything. For me it is just a mnemonic device for new versions of Sub B4A Question foreground service exception - update to "short-term" service or receiver? - Dave O (first post)    Aug 04, 2024 As shown in my original post, I'm implicitly starting the service by using CallSubDelayed2: CallSubDelayed2(backupService, "backupCurrentListIfEnabled_", currentShopList) ...so I'm not associating it with a notification. Should I? B4A Question Motorola TC55... Barcode scan with Intents..BroadcastReceiver.. - DonManfred (first post)    Sep 17, 2015 you can use callsubdelayed2 B4A Question Java Exception: java.lang.Exception: Sub was not found. - LucaMs (first post)    Dec 18, 2016   (1 reaction) Right, Steve.
CallSubDelayed2(Me, "GetEvents", MyCalDateNew)
CallSubDelayed2(Me, "GetSports", MyCalDateNew)
CallSubDelayed2(Me, "GetHomework", MyCalDateNew) Italian CallSubDelayed2 - Fulvio75    Feb 28, 2023 Ciao, il CallSubDelayed posto all'interno di una Classe chiama una sub dentro in un modulo?
Mi da errore durante la compilazione:
CallSubDelayed2(BlueTooth,\
shell\src\af\software\OBD2\connectionref_subs_0.java:475: error: cannot find symbol
connectionref.__c.runVoidMethod ("CallSubDelayed2",__ref. B4A Question CallSub in B4x - Andrew (Digitwell) (first post)    Sep 19, 2021 Are you calling
Callsubdelayed2(GeneralSetting,"QRcodeTextLesen",data)
as you are passing 1 parameter?
You can check if the sub exists by calling
xui.subexists(GeneralSettings,"QRcodeTextLesen",1) befordhand B4A Question New instance of an activity - Erel (first post)    Feb 14, 2018   (1 reaction) Use CallSubDelayed2 to start the next activity and pass the information you like to show. Call Activity.Finish when you are done with it. B4A Question Only the original thread that created a view hierarchy can touch its views. - agraham (first post)    Oct 21, 2024 Yes, CallSubDelayed runs the Sub on the main thread, not the calling thread. You could do the same with OPenGL2.RunOnGuiThread. B4A Question B4XPages and ResumableSub - rraswisak (first post)    Jan 02, 2023 I would prefer using CallSubDelayed approach...
If bDone Then
'...
'...
MakeMenuArray
Wait For MakeMenuArray_Done Complete
'...
'...
End If
Private Sub MakeMenuArray
'do all your code here and end with CallSubDelayed
'If you want t B4A Question Signature matching error - Erel (first post)    Apr 14, 2017   (1 reaction) You can use CallSubDelayed to start an activity. It is in fact very useful as you can call a sub in the other activity and pass information.
Using CallSubDelayed to interact between activities and services
Calling Activity_Create is less useful and indeed should be avoided. However the issue in yo Page: 1   2   3   4   5   6   7   Powered by ColBERT |