PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → [WD11] SMS - What I'm doing wrong?
[WD11] SMS - What I'm doing wrong?
Débuté par ACP, 17 sep. 2007 14:15 - Aucune réponse
Posté le 17 septembre 2007 - 14:15
Hi all,

I'm trying to send SMS from my application but:

1 - SMSSend seems to send message and did not return any error
2 - Message is not received

My code is:

// Start
SMSReset()

SMS.Number="3491234567"
SMS.Message="My SMS-TEXT test messagge"

SendRes is boolean
SendRes = SMSSend()
// Any error?
IF SendRes = False THEN
Error(ErrorInfo(errMessage))
END
// End

What I'm doing wrong?
I have to initialize some strange value in sms-structure?

Thanks
Andrea