B4A Question Send SMS from B4A code - Nishan15    May 18, 2020 I am looking for any working library for sending SMS directly from B4A code without user intervention . By using "Intet" , it need user action to click "Send" Button in messaging app. Dim In As Intent In.Initialize(In.ACTION_VIEW, "sms:" & number) In.PutExtra("sms_body", "this is the body") StartActivity(In)... B4A Code Snippet Send SMS/MMS using Twilio Rest API - JohnC    Jan 9, 2022   (14 reactions) text sending code:
Sub SendTwilioSMS(NumbertoSendto As String, MessageToSend As String)
'This routine sends an SMS from your Twilio.com number to specified number (must include country code... Share My Creation Send SMS from anywhere using B4A ! [Free source included !] - Justcooldev    May 20, 2024   (21 reactions) Hi there!
I want to show you how to send SMS for free from anywhere (Server, B4J, B4A, B4I, Python... and grant the "Send SMS" permission on your phone.
Done!
To send an SMS, you just need to... B4A Question Send SMS without appearing in "sent messages" of the device - bgsoft    Mar 10, 2014 If sending SMS to any of these two systems: '1) Dim ps As PhoneSms Dim r As Reflector r.Target = r.RunStaticMethod("android.telephony.SmsManager", "getDefault", Null, Null) r.RunMethod4("sendTextMessage", Array As Object("phone number", Null...------------------------------------------------------------------------------------------------- '2) Dim Sms1 As PhoneSms Sms1.Send(phone number,"hello") The message appears in "sent messages" of the device As I can send an SMS, without... B4A Question Error sending SMS - GiovanniPolese    Jan 11, 2025 Hi to Everybody
I have a strange situation. The attached project works perfectly on a Motorola G54. I send and receive SMS. I have moved the same SIM on a tablet and run same App. I get the error... B4A Question Error sending an SMS despite having all permissions - AlpVir    Feb 19, 2023 To send an SMS the following code should be valid Dim Sms1 As PhoneSms Sms1.Send(telnum,txtSMS) or Dim Sms1 As PhoneSms Sms1.Send2(telnum,txtSMS, False,False) However I get the following error java.lang.SecurityException: Sending SMS message: uid 10214 does not have android.permission.SEND_SMS. despite having indicated in Manifest AddPermission(android.permission.SEND_SMS) and also having....PERMISSION_READ_CONTACTS ,rp.PERMISSION_ACCESS_FINE_LOCATION, rp.PERMISSION_WRITE_EXTERNAL_STORAGE, rp.PERMISSION_SEND_SMS... B4A Question send sms using google messages stopped working - urgent ... - Zeev Goldstein    Oct 14, 2024 hi
i'm using the bellow code to send sms
Intent1.Initialize(Intent1.ACTION_VIEW, "sms... as the app is on google play store
the sms sending feature is critical so please...
thanks... B4A Question Besides of sending sms, Isthere way to notify othermobile without click buttonagain? - Theera    Feb 4, 2023 I'm looking the strategies how to notifyother mobile.I found Erel's strategy(usingIntent sending sms), but it must bepressed button again.I would like otherstrategies without pressing button again.... B4A Question How to send sms by calling intent? - susu    Dec 16, 2010 I know Phone library can send sms directly but B4A doesn't access contacts yet so I want to call intent. Just like open the browser with a specific web page, in this case open the sms with specific content. How can I do this?... B4A Code Snippet Sending SMS with _SmsSentStatus and _SmsDelivered events - peacemaker    Sep 2, 2018   (10 reactions)   tags: sms, B4A My final result for SMS sending under Android8.
'Manifest editor
AddPermission(android.permission.SEND_SMS)
AddPermission(android.permission.READ_PHONE_STATE)
'Starter service
Sub... Page: 1   2   3   4   5   |