Bug? Problem with CallBack

Karl-Heinz Kolle

New Member
Licensed User
Longtime User
Hallo,
i have problem whith the new version 5.80 of B4A. After install, the follow code don't work.

B4X:
    If SubExists(Main, CallBackFunktion) Then
        Log(CallBackFunktion & " found")
        CallSub2(ActivityName, CallBackFunktion, Value)
        ActivityName = ""
        CallBackFunktion = ""
    Else
        Log(CallBackFunktion & " not found")
    End If


Function SubExists don't find the CallBackFunktion.
In previous version i have no problems.

anybody an idee?
 

stevel05

Expert
Licensed User
Longtime User
You need to supply some more information, what is the name of the callback function, are you sure that it exists and is spelt correctly? If you are compiling the app in Obsfuscated mode, the name will need to have an underscore within it to avoid the subname being obfuscated.
 
Top