检测 PDA (Windows Mobile) 何时处于飞行模式
当 Windows Mobile PDA 处于飞行模式时,我需要生成错误显示消息。用户需要从 SQL Server 服务器拉取和推送数据;然而,在飞行模式下这是不可行的,需要显示一条消息。当前显示的消息是:
请求使用 IIS 向计算机发送信息失败。 有关更多结果,请参阅 HRESULT
我正在使用 VB.Net 进行编程,而且我对它还很陌生。过去一周我在互联网上搜索,发现信息表明我使用 TAPI,但我不知道要导入什么,也不知道“飞行模式检测”代码将在我的应用程序中放在哪里。
I need to produce an error display message when the Windows Mobile PDA is in flight mode. The user will need to pull and push data from a SQL Server server; however when in flight mode this is not doable and a message needs to be displayed. Currently the message that is displayed is:
a requeste to send information the the computer using IIS has failed.
For more results please see HRESULT
I am programming using VB.Net and I am fairly new to it. I have searched for the past week on the Internet and come across information suggesting that I use TAPI, however i do not know what to import, or where the "flight mode detection" code would go in my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用状态和通知代理。使用
SystemState 类
读取和/或监视诸如SystemProperty.PhoneRadioOff
。 这里是使用 SNB 的示例(在 C# 中,但足够简单以进行转换)。Use the State and Notification Broker. Use the
SystemState class
to read and/or monitor the value of something likeSystemProperty.PhoneRadioOff
. Here's an example of using the SNB (in C#, but simple enough to convert).