Hello all, i apologize before hand, but i could not find the answer to this question anywhere in the forums, i'm working on an application which will intercept incoming text messages, but for some reason when there's a long text message i can only intercept part of the message.
my code looks like this!
This text is received ok
a text longer than this gets truncated and only part of it is received, is there a way to receive all the text in a long text message?
Thanks all for you help!
Cheers,
Walter
my code looks like this!
B4X:
Dim SI As SmsInterceptor
SI.Initialize2("SI", 999)
'messagerecieved sub
Sub SI_MessageReceived (From As String, Body As String) As Boolean
Log("Message From: " & From)
Log("Message Body: " & Body)
Return True
End Sub
This text is received ok
This is a test to intercept a text message and then send it to an e-mail address
a text longer than this gets truncated and only part of it is received, is there a way to receive all the text in a long text message?
Thanks all for you help!
Cheers,
Walter