Hi
I have the following code, that suppose to listen to incoming SMS, while in background (as service)
while it is in background it is not catching incoming SMS
any idea why?
Dim SI As SmsInterceptor
Sub Service_Start
SI.Initialize("SI")
n.Initialize
n.Icon = "icon"
n.SetInfo("Barrier Plus", "Running in background", MainMenu)
n.Vibrate = False
n.Notify(1)
End Sub
Sub SI_MessageReceived (From As String, Body As String)
MessageFrom1 = From
MessageBody1 = Body
Check_Arrived_SMS
End Sub
I have the following code, that suppose to listen to incoming SMS, while in background (as service)
while it is in background it is not catching incoming SMS
any idea why?
Dim SI As SmsInterceptor
Sub Service_Start
SI.Initialize("SI")
n.Initialize
n.Icon = "icon"
n.SetInfo("Barrier Plus", "Running in background", MainMenu)
n.Vibrate = False
n.Notify(1)
End Sub
Sub SI_MessageReceived (From As String, Body As String)
MessageFrom1 = From
MessageBody1 = Body
Check_Arrived_SMS
End Sub