Microsoft SMS sender

Microsoft SMS sender

Microsoft SMS Sender is a small but powerful free Windows software to send SMS text messages from a computer via a GSM mobile phone.

With supported more than 20 languanges its able to localize the software with your own native languange, including Arabic, simplified Chinese, French, German, Italian, Russian and Spanish.

One major limitation of Microsoft SMS Sender is only for sending SMS but cannot receive SMS messages from the cell phone. Besides, it only support ordinary SMS text messages, doest not support for concatenated SMS messages, flash SMS messages, MMS messages, ring tones and logos. Click 'Readmore' for download SMSsender.

Category: add-on
OS: TabletPC, WInXP, Win server 2003
File size: 611kb
Download Microsoft SMS sender
SMS Emulator

SMS Emulator

vbSMS is an attempt to develop a full-working sms emulator in Visual Basic programming language. It's in early stage but it runs some homebrew software. The z80 core is almost complete (a few buggy, but), VDP almost done. No bank-switching yet.

Download vbSMS
by John Casey


Send SMS with Skype 3+

Send SMS with Skype 3+

Here I will show you a simple way to send an SMS using Access VBA and Skype. For this you will need Skype version 3 or higher and some skype credit.

Private Sub cmdSendSkype_Click()
' By Mark Plumpton
' Custom Data Solutions Ltd

SkypeSMS txtNumber, txtMessage

End Sub

Public Function SkypeSMS(strNumber As String, strBody As String)
'strNumber is in international format

Dim sky As New SKYPE4COMLib.skype
Dim sms As SKYPE4COMLib.SmsMessage

Set sms = sky.CreateSms(smsMessageTypeOutgoing, strNumber)
sms.Body = strBody
sms.Send

'you can loop here and wait till the message is sent or fails
Debug.Print sms.Status
Set sms = Nothing

End Function

Notes

'Uses Skype4Com.dll
' https://developer.skype.com/Docs/Skype4COM/Start

' Anyway you need skype 3 or higher which installs skype4com library for you



Download sample Here
By Mark Plumpton ~ Custom Data Solutions Ltd
and Edited by Garry

Sending an SMS using CEMAPI

Background

SMS or Simple Messaging Service is a means of sending a short message (160 characters max) to another SMS capable device via the GSM network. On Pocket PC Phone edition devices and Windows CE Smart phones, when selecting a folder, there should have been at least an ActiveSync and SMS message store and possibly an MMS message store as well.

These message stores hold messages from different transport providers locally on the device.

For the purposes of this article, we will be concentrating on the SMS message store as we want to use this to send a message.
Using the code

To make the code simpler and easier to understand, the bulk of the code uses MFC for the User Interface and ATL for smart pointer support.

If people request it, I may make a Win32 only version available as the relevant code (i.e., not the UI code) only requires ATL and not MFC.

In this article, I am not going through a listing of the creation of the MAPI session and opening of the SMS message store and outbox folder. The code is well commented and provided in the source zip file in the two functions GetSMSMsgStore and GetSMSFolder which get the relevant SMS message store and the SMS drafts folder.


Note:
If you have not got a Pocket PC Phone Edition or Windows CE SmartPhone device, sorry this article will not be useful.

Fullnotes: codeproject.com
HTML Send SMS Form

HTML Send SMS Form

Language Support: HTML
API: SMS Web Service HTTP API
Description: HTML Form to send an SMS message using the SMS Web Service HTTP API
Contributed By: Connection Software

[ Download source code ]
(required an account from csoft.co.uk)
SMS Gateway Implementation

SMS Gateway Implementation

Its a UCP SMS gateway.. It sends charged and free sms to the smsc and waits for a reply.. successfull, non successfull.. I made this particular UCP sender so that it can accomadate numerous Senders at once..

'**************************************
'Windows API/Global Declarations for :UC
' P Gateway
'**************************************
Winsock

--------------
Source code:
Download here