实例介绍
通过usb的西门子sms短信模块编写的一个短信管理项目 本套企业短信群发系统。本系统主要利用硬件短信猫发送短信,通过本系统用户完全可以对指定的一组电话号码进行短信的群发,加快了办公的效率。系统自身还有对已发短信的查询功能以及查看SIM卡中收到的短信,还为用户提供了电话簿的功能,通过电话簿管理,可以将比较常用的联系人及其手机号码添加到数据库中,方便在发送短信时添加接收人。系统安全方面也做了考虑,首先用户要通过登录模块验证成功之后才可以进入系统的主窗体,如果用户要暂时的离开,可以通过系统菜单栏中的“锁定系统”命令锁定系统界面,如果想再次使用,需要输入登录密码。为了减轻用户文字输入量,系统提供了常用短语模块,通过此模块用户可以选择一些常用的短语作为短信的内容,同时还可以自定义一些常用的短语以及删除一些不想要的短语。
【实例截图】
【核心代码】
4744302542924901412.rar
└── SMSTEST
├── readme.doc
└── SMS
├── Backup
│ ├── SMS
│ │ ├── AboutBox1.cs
│ │ ├── AboutBox1.Designer.cs
│ │ ├── AboutBox1.resx
│ │ ├── BaseClass
│ │ │ ├── ConnClass.cs
│ │ │ └── GSM.cs
│ │ ├── DataBase
│ │ │ └── db_SMS.mdb
│ │ ├── frmAddDy.cs
│ │ ├── frmAddDy.Designer.cs
│ │ ├── frmAddDy.resx
│ │ ├── frmAddUser.cs
│ │ ├── frmAddUser.Designer.cs
│ │ ├── frmAddUser.resx
│ │ ├── frmChangePwd.cs
│ │ ├── frmChangePwd.Designer.cs
│ │ ├── frmChangePwd.resx
│ │ ├── frmCydy.cs
│ │ ├── frmCydy.Designer.cs
│ │ ├── frmCydy.resx
│ │ ├── frmDyChange.cs
│ │ ├── frmDyChange.Designer.cs
│ │ ├── frmDyChange.resx
│ │ ├── frmDy.cs
│ │ ├── frmDy.Designer.cs
│ │ ├── frmDy.resx
│ │ ├── frmLock.cs
│ │ ├── frmLock.Designer.cs
│ │ ├── frmLock.resx
│ │ ├── frmLogin.cs
│ │ ├── frmLogin.Designer.cs
│ │ ├── frmLogin.resx
│ │ ├── frmMain.cs
│ │ ├── frmMain.Designer.cs
│ │ ├── frmMain.resx
│ │ ├── frmResvice.cs
│ │ ├── frmResvice.Designer.cs
│ │ ├── frmResvice.resx
│ │ ├── frmSendSMS.cs
│ │ ├── frmSendSMS.Designer.cs
│ │ ├── frmSendSMS.resx
│ │ ├── frmSmsXX.cs
│ │ ├── frmSmsXX.Designer.cs
│ │ ├── frmSmsXX.resx
│ │ ├── frmTel.cs
│ │ ├── frmTel.Designer.cs
│ │ ├── frmTelNote.cs
│ │ ├── frmTelNote.Designer.cs
│ │ ├── frmTelNote.resx
│ │ ├── frmTel.resx
│ │ ├── frmYfxx.cs
│ │ ├── frmYfxx.Designer.cs
│ │ ├── frmYfxx.resx
│ │ ├── Image
│ │ │ ├── an_1.gif
│ │ │ ├── an_2.gif
│ │ │ ├── b1.gif
│ │ │ ├── b2.gif
│ │ │ ├── bg_1.gif
│ │ │ ├── bg_2.gif
│ │ │ ├── bg.jpg
│ │ │ ├── j_1.gif
│ │ │ ├── login_1.gif
│ │ │ ├── login_2.gif
│ │ │ └── login.jpg
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── bg10.gif
│ │ │ ├── login.jpg
│ │ │ ├── mb_08.gif
│ │ │ ├── menu_top_r1_c2.gif
│ │ │ ├── new_nav_r1_c1.gif
│ │ │ ├── plyer_r5_c2.jpg
│ │ │ ├── search_bg.jpg
│ │ │ ├── sort_bg_02.gif
│ │ │ └── vod_mf_r21_c7.jpg
│ │ ├── SMS.csproj
│ │ └── SMS.csproj.user
│ ├── SMS.sln
│ └── SMS.suo
├── SMS
│ ├── AboutBox1.cs
│ ├── AboutBox1.Designer.cs
│ ├── AboutBox1.resx
│ ├── BaseClass
│ │ ├── ConnClass.cs
│ │ └── GSM.cs
│ ├── bin
│ │ └── Debug
│ │ ├── AxInterop.WMPLib.dll
│ │ ├── DataBase
│ │ │ └── db_SMS.mdb
│ │ ├── Interop.WMPLib.dll
│ │ ├── SMS.exe
│ │ ├── SMS.pdb
│ │ ├── SMS.vshost.exe
│ │ └── SMS.vshost.exe.manifest
│ ├── DataBase
│ │ └── db_SMS.mdb
│ ├── frmAddDy.cs
│ ├── frmAddDy.Designer.cs
│ ├── frmAddDy.resx
│ ├── frmAddUser.cs
│ ├── frmAddUser.Designer.cs
│ ├── frmAddUser.resx
│ ├── frmChangePwd.cs
│ ├── frmChangePwd.Designer.cs
│ ├── frmChangePwd.resx
│ ├── frmCydy.cs
│ ├── frmCydy.Designer.cs
│ ├── frmCydy.resx
│ ├── frmDyChange.cs
│ ├── frmDyChange.Designer.cs
│ ├── frmDyChange.resx
│ ├── frmDy.cs
│ ├── frmDy.Designer.cs
│ ├── frmDy.resx
│ ├── frmLock.cs
│ ├── frmLock.Designer.cs
│ ├── frmLock.resx
│ ├── frmLogin.cs
│ ├── frmLogin.Designer.cs
│ ├── frmLogin.resx
│ ├── frmMain.cs
│ ├── frmMain.Designer.cs
│ ├── frmMain.resx
│ ├── frmResvice.cs
│ ├── frmResvice.Designer.cs
│ ├── frmResvice.resx
│ ├── frmSendSMS.cs
│ ├── frmSendSMS.Designer.cs
│ ├── frmSendSMS.resx
│ ├── frmSmsXX.cs
│ ├── frmSmsXX.Designer.cs
│ ├── frmSmsXX.resx
│ ├── frmTel.cs
│ ├── frmTel.Designer.cs
│ ├── frmTelNote.cs
│ ├── frmTelNote.Designer.cs
│ ├── frmTelNote.resx
│ ├── frmTel.resx
│ ├── frmYfxx.cs
│ ├── frmYfxx.Designer.cs
│ ├── frmYfxx.resx
│ ├── Image
│ │ ├── an_1.gif
│ │ ├── an_2.gif
│ │ ├── b1.gif
│ │ ├── b2.gif
│ │ ├── bg_1.gif
│ │ ├── bg_2.gif
│ │ ├── bg.jpg
│ │ ├── j_1.gif
│ │ ├── login_1.gif
│ │ ├── login_2.gif
│ │ └── login.jpg
│ ├── obj
│ │ ├── Debug
│ │ │ ├── AxInterop.WMPLib.dll
│ │ │ ├── Interop.WMPLib.dll
│ │ │ ├── Refactor
│ │ │ ├── SMS.AboutBox1.resources
│ │ │ ├── SMS.csproj.FileListAbsolute.txt
│ │ │ ├── SMS.csproj.GenerateResource.Cache
│ │ │ ├── SMS.csproj.ResolveComReference.cache
│ │ │ ├── SMS.exe
│ │ │ ├── SMS.frmAddDy.resources
│ │ │ ├── SMS.frmAddUser.resources
│ │ │ ├── SMS.frmChangePwd.resources
│ │ │ ├── SMS.frmCydy.resources
│ │ │ ├── SMS.frmDyChange.resources
│ │ │ ├── SMS.frmDy.resources
│ │ │ ├── SMS.frmLock.resources
│ │ │ ├── SMS.frmLogin.resources
│ │ │ ├── SMS.frmMain.resources
│ │ │ ├── SMS.frmResvice.resources
│ │ │ ├── SMS.frmSendSMS.resources
│ │ │ ├── SMS.frmSmsXX.resources
│ │ │ ├── SMS.frmTelNote.resources
│ │ │ ├── SMS.frmTel.resources
│ │ │ ├── SMS.frmYfxx.resources
│ │ │ ├── SMS.pdb
│ │ │ ├── SMS.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ ├── DataBase.db_SMSDataSet1.Designer.cs.dll
│ │ │ ├── DataBase.db_SMSDataSet.Designer.cs.dll
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── SMS.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── bg10.gif
│ │ ├── login.jpg
│ │ ├── mb_08.gif
│ │ ├── menu_top_r1_c2.gif
│ │ ├── new_nav_r1_c1.gif
│ │ ├── plyer_r5_c2.jpg
│ │ ├── search_bg.jpg
│ │ ├── sort_bg_02.gif
│ │ └── vod_mf_r21_c7.jpg
│ ├── SMS.csproj
│ └── SMS.csproj.user
├── SMS.sln
├── SMS.suo
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── UpgradeReport.css
├── UpgradeReport_Minus.gif
├── UpgradeReport_Plus.gif
└── UpgradeReport.xslt
23 directories, 203 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论