The easy way of sending an text SMS should look like:
send_text_SMS(phonenumber As Int, message As String)
That is all information you need to send a text SMS, this is at least what I send and receive. RIGHT? And why doesn't it, and what does the sub send_text_SMS actually look like?
What would the sub send_text_SMS(phonenumber As Int, message As String) look like if I want to send a SMS message to a phonenumber. That is all I want to know (at this point), as part of a larger project.
What would the sub send_text_SMS(phonenumber As Int, message As String) look like if I want to send a SMS message to a phonenumber. That is all I want to know (at this point), as part of a larger project.
It will look like you just posted.. send_text_SMS(phonenumber As Int, message As String) If this is what you want. you call the function send_text_SMS, and pass to it the number and the message text. Again if this is not clear to you then you need to post a small project and people here can look into it and help you.