G-ShadoW Active Member Licensed User Longtime User Jul 12, 2015 #1 Hi, this is from service module B4X: Sub Info top=date & " - " & time End Sub I call it from activity like this: B4X: Sub timer1_tick CallSubDelayed(AlarmService,"Info") End Sub Sub GetResult(Result As String) lblNextAlarm.Text= Result End Sub But I dont get any result
Hi, this is from service module B4X: Sub Info top=date & " - " & time End Sub I call it from activity like this: B4X: Sub timer1_tick CallSubDelayed(AlarmService,"Info") End Sub Sub GetResult(Result As String) lblNextAlarm.Text= Result End Sub But I dont get any result
R Roycefer Well-Known Member Licensed User Longtime User Jul 12, 2015 #2 You need to call GetResult() somewhere. Probably from within your Info sub using a CallSubDelayed2() call. Upvote 0
You need to call GetResult() somewhere. Probably from within your Info sub using a CallSubDelayed2() call.