Hi,
We use the ActiveSMS software with a GSM modem, and I'm trying to send long SMS messages.
When I manually insert a message into the database to be sent, it will send witn more than 160 characters.
But when I try it programatically in my VB.net code, it cuts off at the normal 160 characters.
My code:
Dim m_ActiveSMS As New IntelliSoftware.ActiveSMS
m_ActiveSMS.ActiveHandset = IntelliSoftware.Handsets.hsHandset1
intRetVal = m_ActiveSMS.SendMsg(strPhone, strMsg, 15000)
How can I programatically send long messages?
Cheers,
Mike