windows mobile 移动开发
文章平均质量分 73
edwardq2266
这个作者很懒,什么都没留下…
展开
-
引用自定义控件导致的80042729错误
今天试写了一个.net cf下的自定义控件,但是在调试时发现在执行vs保存操作的时候老是弹出"80042729"错误提示,后来发现是窗体资源文件出错了,打开引用该控件的窗体时,页面提示没有找到自定义控件的一些属性,试着重新编译自定义控件项目后再打开窗体就正常了。 不知道是不是原因,总感觉有的时候莫名其妙。以下就是自定义控件ImageLabel的图例: 主要源码如原创 2008-03-29 12:40:00 · 1271 阅读 · 2 评论 -
c#中什么情况下用(int)什么情况下用Convert.ToInt32
在 C# 中,int 其实就是 System.Int32,即都是32位的。 其次,(int) 和 Convert.ToInt32 是两个不同的概念,前者是类型转换,而后者则是内容转换,它们并不总是等效的。我们很清楚 C# 提供类型检查,你不能把一个 string 强制转换成 int,隐式转换就更加不可能,例如如下的代码就行不通了: string text = "1412"; i转载 2008-04-21 21:05:00 · 465 阅读 · 0 评论 -
C#调用DLL文件时参数对应表(转)
Wtypes.h 中的非托管类型 非托管 C 语言类型 托管类名 说明 HANDLE void* System.转载 2008-04-21 20:04:00 · 566 阅读 · 0 评论 -
Open individual documents on Pocket PC
The built in applications in Pocket PC follow a familiar model with a DocumentList screen listing files of that type, and then an "editor" screen for working with an individual document. If you la转载 2008-05-04 17:39:00 · 474 阅读 · 0 评论 -
Compact .NET (Mobile) + MapPoint .NET (Web Service)
http://www.brains-N-brawn.com/noMadMap 5/27/2002 BackgroundIf you have been browsing the MS mapPoint or compactFramework newsgroups, then you could have guessed that I was putting this arti转载 2008-05-15 10:38:00 · 7085 阅读 · 0 评论 -
用OpenNETCF进行文件(数据)同步
大家好,目前数据同步的方式有好几种,本文主要是以文件同步的方式同步数据,思路如下:将mobile sql 的sdf格式的数据库在PC上配置好(当然是用代码去操作了)以后,通过OpenNETCF提供的方法,同步到PDA,俗一点说,就是把带有数据的sdf数据库拷贝到PDA上,然后,您PDA上程序就可以对该sdf数据库进行一系列操作了,相反,也可以把PDA上的sdf数据库同步到PC,用PC上的程序对转载 2008-05-15 10:43:00 · 2012 阅读 · 1 评论 -
C# p/invoke: marshaling class between C# and C++ class
Jin Tu Blog: http://www.inblogs.net/havdone1.0 AbstractionThis article provides basic information to realize how pass c# function pointer and class object to a c++ function as parameters.转载 2008-05-14 14:13:00 · 939 阅读 · 0 评论 -
Mobile 5.0开发配置
Mobile 5.0开发配置:软件安装顺序:1. 安装Microsoft ActiveSync 4.0以上版本2. 安装VS2005开发Pocket PC需安装Windows Mobile 5.0 Pocket PC SDK开发Smartphone需安装Windows Mobile 5.0 Smartphone SDKMobile 5.0环境配置:1. 模拟器与Micr转载 2008-05-15 10:01:00 · 416 阅读 · 0 评论 -
Using CLR Profiler for .NET Compact Framework
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:dc="http://purl.org/dc/elements/1.1/"xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"><rdf转载 2008-05-15 10:25:00 · 570 阅读 · 0 评论 -
EQATEC Profiler: 免费的.NETCF代码性能分析工具
function StorePage(){d=document;t=d.selection?(d.selection.type!=None?d.selection.createRange().text:):(d.getSelection?d.getSelection():);void(keyit=window.open(http://www.365key.com/stor转载 2008-05-15 10:26:00 · 1061 阅读 · 0 评论 -
Finding the Filter DLL for a File
MSDN MSDN Home MSDN Library MSDN Learn MSDN Downloads MSDN Support MSDN CommunityMSDN LibraryPlease WaitWin32 and COM DevelopmentPlease Wait转载 2008-05-13 11:45:00 · 610 阅读 · 0 评论 -
Windows Mobile 6 SDK 中的 Cellular Emulator
<!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:dc="http://purl.org/dc/elements/1.1/"xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"><rdf:Desc转载 2008-05-15 10:49:00 · 625 阅读 · 0 评论 -
C#byte 类型转 sbyte 类型
C#中,byte为无符号8位整数,而Sbyte为有符号8位整数,对应java中的byte类型。 方法一将 byte 转为 sbyte。原理很简单,就是当 byte 小于 128 时其值保持不变,大于等于 128 时就将其减去 256。代码如下:sbyte[] mySByte = new sbyte[myByte.Length];for (int i = 0; i { i转载 2008-04-21 20:05:00 · 5118 阅读 · 0 评论 -
Microsoft .NET Compact Framework 开发常见问题解答 【摘】
Posted on 2008-03-17 14:01 ILCW 阅读(653) 评论(0) 编辑 收藏 所属分类: .NET <!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"xmlns:dc="http://purl.org/dc/elements/1.1/"xmlns:trackba转载 2008-04-16 14:23:00 · 5328 阅读 · 0 评论 -
基于各类常见操作系统的手机浏览c#开发的mobile web站点的样式效果
以下是基于各种常用手机操作浏览使用c#开发的mobile web站点的测试结果(忘大家补充): 序号 手机操作系统 样机型号原创 2008-03-29 13:16:00 · 947 阅读 · 0 评论 -
创建 Windows CE 帮助
适用于 Pocket PC 2002 的 Microsoft Windows CE 帮助Susan BuckleyMicrosoft Mobile Device Division 2002 年 2 月 摘要:本文介绍如何为 Pocket PC 2002 创建 Windows CE 帮助。 目录 简介 发展简史 Windows CE 帮助概转载 2008-04-04 16:20:00 · 890 阅读 · 0 评论 -
How to hide the OK button in the dialog in .Net Compact Framework application?
QuestionSome dialogs like wizards should contain neither OK nor X button. How can I the OK or X button in the dialog in .Net Compact Framework application? AnswerA. We have to import three funct转载 2008-04-04 13:00:00 · 472 阅读 · 0 评论 -
获取智能设备唯一编号 (GetDeviceUniqueID)
GetDeviceUniqueID There is a new API available for retrieving a device id in Windows Mobile 5.0 for both Pocket PC and Smartphone. The first question: why do we need a new way of getting the devic转载 2008-04-04 15:55:00 · 4238 阅读 · 1 评论 -
a method to get a screenshot of a WinCE 5.0 device
call method:BitmapUtils.Snapshot(null, @"/test.bmp"); Class to call fromusing System;using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;names转载 2008-04-10 15:33:00 · 491 阅读 · 0 评论 -
Using MyXaml on the Compact Framework
Contents Introduction Missing functionality RunTimeCompilation Implementation of CreateDelegate ISupportInitialize and Trace TypeDecoder XPath Includin转载 2008-04-14 10:37:00 · 539 阅读 · 0 评论 -
Windows Mobile 进阶系列.第零回.序
前言随着近年智能终端的普及,带智能操作系统的移动设备纷纷为大家所熟知。人们生活水平的的提高,使得对智能化易用化移动设备的需求不断提升。从开发者的角度来看,移动设备的发展需要硬件和软件的共同发展。硬件上,桌面PC的x86系列CISC指令集计算机,CPU功耗比较高,并且CPU本身不能直接和内存、显示器等外设进行连接,需要大量的外围器件才能够形成一个能够使用的计算机,高功耗和大体积是显转载 2008-04-14 11:34:00 · 398 阅读 · 0 评论 -
XML on Windows Mobile (C#)
摘要 Windows Mobile上的XML相关类,并利用它们高效地操作XML文件(流)Keywords.Net Compact Framework, Windows Mobile, XML两年以前张欣同学曾经做过一期Webcast谈到了这相关的内容,详见:http://msevents.microsoft.com/CUI/WebCastEventDetails.as转载 2008-04-14 12:08:00 · 503 阅读 · 0 评论 -
event handlers in assemblies
When an event is handled by a pre-compiled assembly, you can use the short form of specifying just the event handlers method name if the method name is unique. MyXaml searches all object targets that转载 2008-04-14 10:41:00 · 457 阅读 · 0 评论 -
第一回. 真的了解.NET Compact Framework吗?
作为系列文章的开篇,有必要先详细了解一下基于CE.NET的.NET Compact Framework(以后简称.NET CF),本文叙述了.NET CF的设计目标,架构特征和执行环境。.NET CF的目标在哪里?1. 专为设备设计的便携式小型.NET CLR具有.NET Framework的子集属性,支持多种语言开发。我们知道,在英文里面“便携式”对应的单词是Port转载 2008-04-14 11:59:00 · 823 阅读 · 0 评论 -
第二回.初窥CF类型加载器
摘要对可执行的应用程序,它的生命是从Load开始的,一个.NET 的程序,某种程度上可以说它的生命是从加载类型开始的。本文阐述了在.NET CF中的Type Loader的工作原理,并结合示例说明了如何让您的应用程序启动更快。Keywords.NET Compact Framework,Type Loader, JIT ,Generic,Dictionary1. 设备不能承受之慢转载 2008-04-14 12:52:00 · 873 阅读 · 1 评论 -
移动办公通用解决方案
移动办公通用解决方案 相关PPT转载 2008-05-15 10:21:00 · 1322 阅读 · 0 评论