R ronell Well-Known Member Licensed User Longtime User Oct 19, 2017 #1 is it possible to intercept message ? i have an app that prints in mini pos printer but i want to print only whenever i receive a certain message TIA
is it possible to intercept message ? i have an app that prints in mini pos printer but i want to print only whenever i receive a certain message TIA
DonManfred Expert Licensed User Longtime User Oct 19, 2017 #2 ronell said: is it possible to intercept message ? Click to expand... which message? It is up to you to give the message to the printer or not, right? Upvote 0
ronell said: is it possible to intercept message ? Click to expand... which message? It is up to you to give the message to the printer or not, right?
R ronell Well-Known Member Licensed User Longtime User Oct 19, 2017 #3 DonManfred said: which message? It is up to you to give the message to the printer or not, right? Click to expand... sorry i didnt make it clear it is an sms message that i want to intercept, then the body of the message will be printed Upvote 0
DonManfred said: which message? It is up to you to give the message to the printer or not, right? Click to expand... sorry i didnt make it clear it is an sms message that i want to intercept, then the body of the message will be printed
DonManfred Expert Licensed User Longtime User Oct 19, 2017 #4 add a listener for sms and check the content... B4X: if msg.contains(...) then ' your code to print. end if Upvote 0
add a listener for sms and check the content... B4X: if msg.contains(...) then ' your code to print. end if