找传奇、传世资源到传世资源站!

C# GSM Modem短信的 发送/接收 示例源码下载

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

C# GSM Modem短信的 发送/接收 示例源码下载 Windows系统编程-第1张
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO.Ports;namespace sms{ public partial class Form1 : Form { public Form1 ( ) { InitializeComponent ( ); } private void buttonSend_Click ( object sender , EventArgs e ) { string CenterNum = "13800769500"; //短信中心 ComPortClass cp = new ComPortClass ( "COM1" , 9600 ); string ss = cp.SetMsgCenter ( CenterNum ); MessageBox.Show ( ss ); string s2 = cp.SendToCom ( "13763170048" , CenterNum , "测试一下,麻烦您收到信息请告之我!" ); MessageBox.Show ( s2 ); } private void button_read_Click ( object sender , EventArgs e ) { ComPortClass cp = new ComPortClass ( "COM1" , 9600 ); //有些类型的短信,好像读出出来,手机给手机发的短信可以读取 for ( int i = 1; i < 10 ; i ) { string s2 = cp.ReadMsg ( i.ToString ( ) ); MessageBox.Show ( i.ToString ( ) Environment.NewLine s2 ); } } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复