08 2012 档案

摘要:标题:wince简单绘图摘要:直线,矩形,椭圆,多边形等简单图形的绘制备注:Windows CE + VS2005日期:2010.4.27============================================================= ①创建画笔 绘制图形之前,可以先创建一个自己想要的画笔。通过CreatePen和CreatePenIndirect两个函数都可以实现。以CreatePen为例,函数原型如下:HPEN CreatePen( int fnPenStyle, int nWidth, COLORREF crColor); fnPenStyle是画笔类型。nWi 阅读全文
posted @ 2012-08-27 09:57 nsoft 阅读(342) 评论(0) 推荐(0)
摘要:// : Defines the entry point for the DLL application.//#include "stdafx.h"//#define LOG_CALLSchar * atoh = "0123456789ABCDEF";// " 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F"BYTE htoa1[] = {0x00,0x10,0x20,0x30,0x40,0x50,0x60,0x70,0x80,0x90,0,0,0,0,0,0,0,0xA0,0x 阅读全文
posted @ 2012-08-21 17:09 nsoft 阅读(308) 评论(0) 推荐(0)
摘要:我利用业余时间制作了谷歌(google)的离线地图,ZOOM level 是14级的,地面解析度 10米,比例尺是1:50000感觉清晰度比较好,更新比较快,还有准确的坐标。下面是下载地址:广州地图下载成都地图下载 阅读全文
posted @ 2012-08-10 14:20 nsoft 阅读(382) 评论(2) 推荐(0)