
Windows Mobile
文章平均质量分 72
wang8712
这个作者很懒,什么都没留下…
展开
-
Windows Mobile开发环境搭建指南
内容简介本文描述了如何搭建典型的Windows Mobile开发环境。介绍了相应的IDE、SDK及辅助开发工具的安装及常用配置,并对Windows Mobile下一代开发环境的发展前景做出展望。本文适合初次接触Windows Mobile开发的开发人员。Windows Mobile开发简介Windows Mobile是微软公司操作系统产品线上重要的一环。与Windows 9x/NT原创 2006-02-22 17:51:00 · 1474 阅读 · 0 评论 -
在Windows Mobile 上使用 GDI+
在Windows Mobile 上使用 GDI+转载 2008-01-18 14:06:00 · 700 阅读 · 0 评论 -
如何提高.NET Compact Framework应用程序的性能
以下编程做法可以节省内存和改善设备应用程序的性能。使用 Windows 窗体和图形节省内存 对提供 BeginUpdate 和 EndUpdate 方法的控件使用这两种方法,提供这两种方法的控件包括 ComboBox、ListBox、ListView、ToolStripComboBox 和 TreeView。 重新定位控件时,使用转载 2008-01-18 15:00:00 · 601 阅读 · 0 评论 -
Windows Mobile检索手机扩展卡
#region 检索手机扩展卡类 public class EnumFlashCard { public EnumFlashCard() { // // TODO: Add constructor logic here // } // Flash-card search functions. [DllImport("note_prj.dll", EntryPoint=原创 2007-09-21 10:52:00 · 1173 阅读 · 1 评论 -
用C#读取GPS数据的基类.
using System;using System.Runtime.InteropServices;using System.Text;namespace BaseStationPDA { class GPS { public string PortNum; public int BaudRate; public byte ByteSize; public byte Parit原创 2007-09-18 14:56:00 · 1086 阅读 · 0 评论 -
WindowsMobile配置文件操作
//激活CMWAP SmartPhonePLAYER_API BOOL CE_ConnectCMWAP_SP(void){ LPCWSTR g_wszNetWorkXml=L""; HRESULT hr = E_FAIL; LPWSTR wszOutput = NULL; // Process the XML. hr = DMProcessConfigXML(g原创 2007-08-13 16:00:00 · 1998 阅读 · 2 评论 -
WinMobile MD5加密
#region MD5加密算法 // MD5 Alogrithm public class MD5 { public MD5() { } // state variables private UInt32 A; private UInt32 B; private UInt32 C; private UInt32 D; //number of bit原创 2007-04-06 17:14:00 · 760 阅读 · 0 评论 -
C#中调用Windows API的要点
C:/Program Files/Microsoft Visual Studio .NET/FrameworkSDK/Samples/Technologies/Interop/PlatformInvoke/WinAPIs/CS目录下有大量的调用API的例子。一、调用格式 using System.Runtime.InteropServices; //引用此名称空间,简化后面的代码 ... //使用原创 2006-10-12 16:19:00 · 1284 阅读 · 0 评论 -
基于Windows Mobile 5.0的GPS应用程序开发
开发平台:操作系统: Window XP开发环境: Visual Studio 2005 Windows Mobile 5.0 Pocket PC SDK.Net Compact Framework 2.0 (VS2005自带)ActiveSync 4.0移动设备:Dell X51 PDA + GPS 卡 1. 环境的搭建1)转载 2006-10-12 10:16:00 · 3494 阅读 · 1 评论 -
SmartPhone开发常用类:手机发送短信
方法一:采用自定义类using System;using System.Runtime.InteropServices;using System.Text;namespace SmartPhone{ /// /// SMS helper class. /// public class SMS { public SMS() {原创 2006-04-27 13:38:00 · 1780 阅读 · 3 评论 -
SmartPhone PocketPC文件夹管理源码
一:ListViewHelper.csusing System;namespace RDP{ /// /// Summary description for Helper. /// public class ListViewHelper { private const uint LVM_GETEXTENDEDLISTVIEWSTYLE = 0x1000 + 55; priv原创 2006-09-06 11:19:00 · 1373 阅读 · 0 评论 -
在smartphone程序中指定textbox控件的输入法
由于.netcf里TextBox不像VC++中一样可以指定number的style,所以我们借助API来实现首先,定义一个类,来Pinvoke Win32 API public class Win32Pinvoke { public enum InputMode { Spell = 0, T9 = 1, Numbers = 2, Text = 3 } // Constants req原创 2006-04-24 10:41:00 · 1411 阅读 · 0 评论 -
c#.net实现Smartphone,PocketPC进程启动
using System;using System.Runtime.InteropServices;using System.Text;namespace RDP{ /// /// Utility class for launch programs and files. /// public class ShellExecute { public static void Start(原创 2006-09-06 11:09:00 · 1500 阅读 · 1 评论 -
用VB.net实现Smartphone中进程启动
近日心血来潮,花巨资购进多普达智能手机一台, 系统为微软的Smartphone2003 ,由于对"瘟倒死"操作系统的熟悉,很快已步入正轨,各种图片、程序安装了一大堆后,开始发挥自己的程序特长,试着为爱机写一个资源管理器的简单程序。 我选择的编程工具当然是Visual Basic NET2003,实话说Microsoft .NET Framework SDK 提供的功能实在不感恭维,微软好象又要将原创 2006-04-20 11:39:00 · 749 阅读 · 0 评论 -
异步获取远程二进制数据
using System;using System.Net;using System.Threading;using System.Text;using System.IO;using System.Drawing;/* * 异步获取远程二进制数据 * 王保宏 2006-2-28 * */namespace RDP{ // RequestState 类用于通过 // 异步调用传递数据 public原创 2006-04-21 11:08:00 · 1073 阅读 · 0 评论 -
smartphone中打开本地文件夹结构
private void CreateFolderTree(){TreeNode node = new TreeNode();//Create Root Nodenode.Text = "My SmartPhone";node.Tag = Directory.GetDirectoryRoot("//");CreateFolderTree( n原创 2006-04-20 11:42:00 · 861 阅读 · 0 评论 -
用.net 2003开发SmartPhone调试出现无法建立连接问题
用.net 2003开发SmartPhone时,在部署的时候会出现如下的错误:错误: 无法建立连接。请确保此设备已经与开发计算机建立了物理连接。---------------------- 完成 --------------------- 生成: 1 已成功, 0 已失败, 0 已跳过 部署: 0 已成功, 1 已失败, 0 已跳过解决办法:安装Windows CE .NE原创 2006-02-22 17:37:00 · 1418 阅读 · 1 评论 -
电子商务,数据说话
前几天拿到了由《电子商务世界》杂志在2007年11月底举办的“2007中国网上零售年会”的会议资料,发觉里面有些数据比较有意思,特摘录整理如下。 1. 2006年中国的社会消费品零售总额为6万亿,而网上零售的总额约312亿,只占前者的0.5%;2. 截至2006年底,中国B2C交易额为82亿元,预计2008年中国B2C交易额为600亿元;3. 累计到2006年12月底,中国网原创 2008-01-18 14:07:00 · 2906 阅读 · 0 评论