Solved Another is this possible question - hiding/disabling a label of the current record of a continuous form

maybe something similar.
I tried it Arnel and it wouldnt send? I wonder if its because the string has to include the = in it?
I really thought that you had it?
Thank you
 
I just tried this in the immediate window
Code:
Application.Followhyperlink "https://wa.me/1111111?text=Your%20Order ABC12345%20is%20in%20transit%20on%20the%20boat%20from%20Dornie"
And it opened the WhatsApp Api with a message ready to send.
 
I just tried this in the immediate window
Code:
Application.Followhyperlink "https://wa.me/1111111?text=Your%20Order ABC12345%20is%20in%20transit%20on%20the%20boat%20from%20Dornie"
And it opened the WhatsApp Api with a message ready to send.
That must be it then. I'm not at my laptop now but will try over the weekend. That sounds great!
Thank you
 
Right guys i have now got it working using Arnel's TextMe example and Minty's section below.

Code:
Private Sub cmdSendText_Click()
Application.FollowHyperlink "https://wa.me/" & [PhoneNo] & "?text=Your%20Order " & [PONumber] & "%20is%20in%20transit%20on%20the%20boat%20from%20Dornie"
End Sub

So we have solved it thanks to you guys
 

Users who are viewing this thread

Back
Top Bottom