Ok, some more detailed:
Intention is to send a short message for record start and stop working times. This message will be passed to an automated time recording system. If a sms is missing or more than one message of a type is present this system can't calculate the working hours and a manual correction is needed.
So I'm looking for a way to check, if a message is still send and not maybe only placed in some kind of queue. Also I like to wait for the sending process.
Actually my procedure only runs through:
Sub send_sms (text As String, number As String)
Sms.Send(number, text)
End Sub
Any way to check for some kind of errors at dispatching?
If the mobile is at flight mode f.e. the sms.send routine runs already fine, but no sms is send.
Thanks!
Roady