Saturday, January 16, 2016
On WM5 how sending SMS
On WM5 how sending SMS, you could not find the class. Depressed ing.
Reply:
SmsSendMessage
Reply:
using Microsoft.WindowsMobile;
using Microsoft.WindowsMobile.Status;
using Microsoft.WindowsMobile.PocketOutlook;
SmsMessage msg = new SmsMessage ("13812345678", "hi all");
msg.Send ();
Reply:
There are built-in SDK examples, we can see this
? ? : \ Program Files \ Windows CE Tools \ wce500 \ Windows Mobile 5.0 Smartphone SDK \ Samples \ Cs \ Smsim
Reply:
Imports Microsoft.WindowsMobile.Telephony
Imports Microsoft.WindowsMobile.PocketOutlook
Imports Microsoft.WindowsMobile.PocketOutlook.MessageInterception
Imports Microsoft.WindowsMobile
Dim smsM As New Microsoft.WindowsMobile.PocketOutlook.SmsMessage
smsM.Body = "Hello World"
smsM.To.Add (New Recipient ("Joe Smith", "139XXXXXXXX"))
'Sent successfully get a feedback
smsM.RequestDeliveryReport = True
smsM.Send ()
Reply:
Reply:
This is an example of using c # to achieve, but many wm5 phones are not preinstalled .net cf 2.0 a,
Before allowing users to install applications, first installed .net cf 2.0 hard.
I ask if vc ++ 2005 occurred implement SMS function, how we should do?
There are examples where ah?
Reply:
Cats do with SMS text messaging platform, relatively stable, regardless of network security impact, responsive, for some important business needs high security, but the transmission speed is limited, usually 800 / hour
sp SMS channel to send fast, but due to access to a lot of developers, in the case of small servers, bound queue, sometimes submitting a text message when busy, the next day to receive, and the network is not normal, it will also affect
Do suggest some management software with SMS messaging platform
cat1. inch GSM-Modem SMS platform
GSM-Modem SMS platform, without networking, just a computer, a SMS modem (or mobile phone), a text message development interface, you can easily build messaging server, enabling messaging, text messaging and other interactive features, a computer can be connected multiple SMS cat hardware, thereby improving throughput.
2. loss to SMS database interface (SMS interfaces, SMS secondary development control)
Through this database interface, you can make your existing systems (such as OA, CRM, ERP and other systems) easy wireless office functions, whether you are using a kind of development languages (VB \ VC \ VFP \ asp \ jsp \ java \ pb \ delphi ...), as long as your system can read and write database can butt! You only need to add the specified records in the table, this interface program will automatically send text messages, SMS messages are automatically saved to the database, so you do not need to know anything about the data communication, the mobile phone can be achieved SMS receiving and other functions!
Tel: 0755-25996144
Contact: Mr. Chen
Website: http: //www.fcwww.com
qq: 393376247
Reply:
To monitor messages that ask if you want to do? The best vb.net
Reply:
Tested, available
Dim WithEvents sms As New MessageInterception.MessageInterceptor
Private Sub sms_MessageReceived (ByVal sender As Object, ByVal e As Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessageInterceptorEventArgs) Handles sms.MessageReceived
'You need to typecast the message
Dim msg As SmsMessage = CType (e.Message, SmsMessage)
'Msgb.body now contains the message
MsgBox (msg.Body)
End Sub
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment