
WinCE&MB
whisht
十年
展开
-
WinCE5创建网络连接
<br /> <br />利用WinCE注册表,创建拨号连接/// <summary> /// WinCE5创建网络连接 /// </summary> private static void createRasDial5() { RegistryKey RootKey = Registry.CurrentUser; RegistryKey key = RootKey.CreateSubKey("Comm"); key = key.CreateSubKey("RasBoo原创 2010-11-18 11:05:00 · 1992 阅读 · 0 评论 -
WinCE5下创建桌面快捷方式
WinCE系统经裁剪后,安装到系统的文件在掉电后会丢失,所以需要每次都重新操作(创建快捷方式)。参考代码如下:/// /// WinCE5下创建桌面快捷方式 /// private static void createHotLink5() { string hotlink = @"/Windows/桌面/快捷方式.lnk"; if (!File.Exists(hotlink)) { string src = Path.GetDirectoryNam原创 2010-11-18 11:11:00 · 1129 阅读 · 0 评论 -
Windows Mobile连接网络
<br />Windows Mobile连接网络<br /> using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; using System.Threading; using System.Collections; namespace DATest { public class ConnectManager转载 2010-11-18 16:47:00 · 816 阅读 · 0 评论 -
Windows Mobile创建网络连接
<br />Windows Mobile创建网络连接<br /> <br />/// <summary> /// Windows Mobile创建网络连接 /// </summary> private static void createRasDial() { RegistryKey RootKey = Registry.LocalMachine; RegistryKey key = RootKey.OpenSubKey("Comm"); key = key.Ope原创 2010-11-18 17:26:00 · 566 阅读 · 0 评论 -
c# 智能设备应用程序不显示在任务栏以及最小化窗体
在c#winform应用程序中,窗体有ShowInTaskbar和FormWindowState.Minimized属性,通过.NET Framework类库可以轻松地实现窗体不显示在任务栏以及窗体最小化操作,而c#的智能设备.NET Compact Framework不支持这两项,要实现着两个功能,需要通过调用底层win32 API函数来实现,一大批Win32 底层操作的函数都存在于cordll.dll 动态链接库中。具体实现方法:首先调用Win32 的申明:using System.Runtime.In原创 2011-03-08 17:13:00 · 913 阅读 · 0 评论 -
Qt/Embedded中使用jpeglib
1、http://www.ijg.org/下载最新安装包,目前为jpegsrc.v8d.tar.gz 2、复制到 /usr/src/ 3、#cd /usr/src 4、#tar xzvf jpegsrc.v8d.tar.gz //解压 5、# cd jpeg-8d/ 6、# ./configure –enable-shared–enable-static//配置,既生成静态又生成共享库文原创 2012-12-20 21:02:35 · 1828 阅读 · 0 评论 -
OK6410预览并实现截图操作(RGB565)
涉及内容: 1、v4l2操作摄像头 2、RGB565转BMP(RGB16)文件 参考代码: #include #include #include #include #include #include #include #include #include #include #include #include #include #include #inc原创 2012-12-20 21:12:21 · 874 阅读 · 0 评论