阅读全文
posted @ 2008-09-12 10:06
|
|||
随笔分类 - WinCE/PPC/Mobile
摘要:
WINCE5.0及Mobile5.0在EVC4.0及VS2005 C++开发上,全屏的处理有所不同。
阅读全文
posted @ 2008-06-27 11:57
摘要:RegisterHotKey()实现Alt+E的快捷键组合功能 [问题提出] 有的程序需要自定义组合键完成一定功能,如何实现? [解决方法] RegisterHotKey函数原型及说明: ...
阅读全文
posted @ 2008-05-29 17:59
摘要:问:Microsoft® eMbedded Visual Tools 3.0到底是什么? 答: eMbedded Visual Tools 3.0是一套供嵌入式开发商在Microsoft Windows® CE操作系统上面向新一代32位设备编写软件应用程序的相关工具。该产品提供了Microsoft eMbedded Visual C++® 3.0开发系统完全版、Micro...
阅读全文
posted @ 2008-05-29 17:31
摘要://======================================================================== //TITLE: // WINCE的编程忠告 //AUTHOR: // norains //DATE: // 第一版:Wednesday 7-March -2007 // 修正版:Tuesday 7-October-2007...
阅读全文
posted @ 2007-12-11 15:38
摘要:使用 Windows 窗体和图形节省内存 · 对提供 BeginUpdate 和 EndUpdate 方法的控件使用这两种方法,提供这两种方法的控件包括 ComboBox、ListBox、ListView、ToolStripComboBox 和 TreeView。 · 重新定位控件时,使用 SuspendLayout 和 ResumeLayout 方...
阅读全文
posted @ 2007-11-14 17:40
摘要:1 using System; 2 using System.Runtime.InteropServices; 3 4 class Sound 5 { 6 private enum Flags 7 { 8 SND_SYNC = 0x0000, /* play synchronously (default) */ 9 SND_ASYNC = 0x...
阅读全文
posted @ 2007-07-06 13:46
摘要:1 using System; 2 using System.Runtime.InteropServices; 3 4 class Mutex 5 { 6 [DllImport("coredll.Dll")] 7 private static extern int GetLastError(); 8 9 [DllImport("coredll.Dll")]10 ...
阅读全文
posted @ 2007-07-06 13:40
摘要:1 using System; 2 using System.Runtime.InteropServices; 3 4 class SysDateTime 5 { 6 private struct SYSTEMTIME 7 { 8 public ushort wYear; 9 public ushort wMonth;10 p...
阅读全文
posted @ 2007-07-06 13:33
摘要:PC上获取程序当前运行目录,常用作法: 1> path = System.Windows.Forms.Application.StartupPath; //不包括EXE的名称 2> path = System.Windows.Forms.Application.ExecutablePath; //包括EXE的名称 3> path = System.Reflection.Assembl...
阅读全文
posted @ 2007-02-13 10:08
摘要:错误: 无法建立连接。请确保此设备已经与开发计算机建立了物理连接。
---------------------- 完成 ---------------------
生成: 1 已成功, 0 已失败, 0 已跳过
部署: 0 已成功, 1 已失败, 0 已跳过
阅读全文
posted @ 2007-01-28 00:47
|
|||