Hi!
Ich have an activity called "Settings" where I fill some variables (defined in Process_Globals). So when I start the main activity I want to execute in Activity_Create the sub "PrepareStrings" of Settings and get the value of the variable "sJa" which is defined in the sub "PrepareStrings". But the debugger shows that the sub "PrepareStrings" isn´t called.
'Main
Ich have an activity called "Settings" where I fill some variables (defined in Process_Globals). So when I start the main activity I want to execute in Activity_Create the sub "PrepareStrings" of Settings and get the value of the variable "sJa" which is defined in the sub "PrepareStrings". But the debugger shows that the sub "PrepareStrings" isn´t called.
'Main
B4X:
Sub Activity_Create(FirstTime As Boolean)
...
CallSub(Settings, "PrepareStrings")
Msgbox(Settings.sJa,"")
end Sub