Hey Devs,
The following piece of code will send SMS from your application.
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.WindowsMobile.Telephony;
using Microsoft.WindowsMobile.PocketOutlook;
namespace SBSMProj
{
public partial class SendSMS : Form
{
public SendSMS()
{
InitializeComponent();
}
private void menuItem2_Click(object sender, EventArgs e)
{
MessageBox.Show(“Thanks for playing fair”);
Application.Exit();
}
private void mnuMessage_Click(object sender, EventArgs e)
{
. . . → Read More: Sample C# Application to Send SMS from Windows Mobile 5