Bonjour à tous
Est'il possible d'envoyer des SMS à partir d'Access par VBA
Merci par avance pour vos réponses
Pierre
Version imprimable
Bonjour à tous
Est'il possible d'envoyer des SMS à partir d'Access par VBA
Merci par avance pour vos réponses
Pierre
Essayez ceci:
http://www.smsco.it/tomcat/en/sms_tu...rom_access.jsp
Bonjour.
Ici une solution :
how to send SMS using API link from my ms access 2010 (.accdb) databse file
https://social.msdn.microsoft.com/Fo...orum=accessdev
Ici aussi avec une librairie à acheter :
http://www.smsco.it/tomcat/en/sms_tu...rom_access.jsp
A+
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 Dim strURL As String Dim neMb As String Dim msGe As String Set appIE = CreateObject("InternetExplorer.Application") neMb = "+221775458849" msGe = "test mass" strURL = "https://api.orangesmspro.sn:8443/api/sendmsg.php?user=success&pass=654321&sender=BSHSMS&phone=" & neMb & "text=" & msGe & "priority=ndnd&stype = normal" With appIE .Navigate strURL .Visible = True End With Do While appIE.busy DoEvents Loop appIE.Quit
Il n'y aurait pas moyen de piloter l'application "my phone" de windows ?