我正在VB.Net上编写Windows Mobile手机的应用程序,我想从手机的内存中读取短信。根据MSDN,SMSAccount类是我需要的:
'SmsAccount Class
'Provides access to a Outlook Mobile Short Message Service (SMS) account, the account's SMS folders, and the SMS messages they contain.
但是,SMSAccount类只有一个有趣的方法,即Send
(请参阅http://msdn.microsoft.com/en-us/library/microsoft.windowsmobile.pocketoutlook.smsaccount_members.aspx),我无法弄清楚如何访问实际的消息。
我在网上找到了建议使用smsAccount.Inbox属性的示例,我无法找到它。我得到了这个代码,例如:
Dim smsAcc As SmsAccount
Dim smsFdr As SmsMessageFolder
smsFdr = smsAcc.Inbox
但是我找不到SmsMessageFolder类和Inbox属性。
如何访问smss?
感谢您的帮助, CFP。
答案 0 :(得分:1)
我找到了这个链接......
Getting SMS Messages from Pocket Outlook in Windows Mobile 5
似乎表明没有简单的方法可以做到这一点。当我搜索到this company进行第三方实施时,我注意到了。我对它们了解不多,除了它似乎是几个论坛上的建议答案(所以你可能已经知道了)。
答案 1 :(得分:0)