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

Minty

AWF VIP
Local time
Today, 15:00
Joined
Jul 26, 2013
Messages
10,355
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.
 

Sam Summers

Registered User.
Local time
Today, 15:00
Joined
Sep 17, 2001
Messages
939
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
 

Sam Summers

Registered User.
Local time
Today, 15:00
Joined
Sep 17, 2001
Messages
939
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

Top Bottom