摘要: CAML query for Group by count anddataCompanyCategoryProduct NameMicrosoftDeveloperVisual StudioMicrosoftConsumerWindowsMicrosoftEnterpriseSharePoint 2010MicrosoftMobileWindows 7SamsungConsumerLaptopsSamsungConsumerMobilesSamsungConsumerTabletGoogleConsumerSearch EngineGoogleConsumerGoogle MapsThe ab 阅读全文
posted @ 2013-10-22 13:33 icedog 阅读(836) 评论(0) 推荐(0) 编辑
摘要: Creating a Mono 3 RPM on CentOSA quick guide to creating an rpm of mono 3 from source, starting with a CentOS 6.4 minimal using fpm to create the package.Install prerequisites for building mono 3yum -y updateyum -y install glib2-devel libpng-devel libjpeg-devel giflib-devel libtiff-devel libexif-dev 阅读全文
posted @ 2013-09-21 02:31 icedog 阅读(319) 评论(0) 推荐(0) 编辑
摘要: C#编程中,使用dll调用是经常的事,这样做的好处是非常多的,比如把某些功能封装到一个dll中,然后主程序动态调用这个dll。 废话不多说,举例说明如下。 首先,我们需要封装一个dll,vs2008下建立一个类库,代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace dll{public class addclass{public static Int32 add(Int32 i, Int32 j){return i + j;}}} 编译生... 阅读全文
posted @ 2013-09-19 22:11 icedog 阅读(4942) 评论(0) 推荐(0) 编辑
摘要: C#动态加载程序集 今天在看网络上的一篇关于‘.NET应用自动部署窗体技术’。NET的自动部署技术构造在.NET框架之中,它使得应用程序能够通过HTTP连接从远程服 务器按需下载程序集。有了这个功能,我们可以把胖客户端应用程序发布到一个Web服务器,确保用户下一次使用应用程序时总是自动得到程序的最新版本。设想 一下吧:再也不必用CD来发布升级软件,再也不必在电话中向用户反复解释因版本冲突引起的问题! 其中,就需要动态加载程序集,利用“滴流”部署(Tickle Down Deployment),保证客户端始终使用最新的程序。下面是我程序部分,后面再做代码分析:新建一个控制台应用程序,并创建下面一 阅读全文
posted @ 2013-09-19 22:09 icedog 阅读(1745) 评论(0) 推荐(0) 编辑
摘要: 为Mono安装MySql连接驱动(转)2013 年 1 月 24 日.NETmono、MySqlDOTNET and Mono by default only support database connections to the Microsoft SQL Server through System.Data.SqlClient module. To make a connection to the MySQL server you need a connector module from MySQL.Proceed with the following steps to obtain an 阅读全文
posted @ 2013-09-19 21:47 icedog 阅读(700) 评论(0) 推荐(0) 编辑
摘要: http://baike.baidu.com/view/557637.htmWG26协议Wiegand 26格式:各数据位的含义:第1 位: 为输出数据2—13位的偶校验位第 2—9 位: ID卡的HID码的低8位第10-25位: ID卡的PID号码第26位: 为输出数据14-25位的奇校验位数据输出顺序: HID码和PID码均为高位在前,低位在后例:一张ID卡内容为:HID:32769 PID:34953 ( 卡面印:2147584137 001, 34953)相应的二进制为:HID:1000 0000 0000 0001 (只输出低8位 )PID:1000 1000 1000 1001.. 阅读全文
posted @ 2013-08-25 18:16 icedog 阅读(9333) 评论(0) 推荐(0) 编辑
摘要: http://www.lianglong.cq.cn/post/375.htmlhttp://www.google.com/webfonts<link href="http://fonts.googleapis.com/css?family=Terminal+Dosis&subset=latin" rel="stylesheet" type="text/css"> 阅读全文
posted @ 2013-02-02 16:57 icedog 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Android程序调用本机google地图,传递起始和终点位置,生成路线图Android程序调用本机googlemap,传递起始和终点位置,生成路线图Android程序调用本机googlemap,传递起始和终点位置,生成路线图if (wodeweizhiPoint != null) { if (wodeweizhiPoint.getLatitudeE6() != 0) { float chufajingdu = (float) (wodeweizhiPoint.getLongitudeE6() / 1E6); float chufaweidu = (float) (wodew... 阅读全文
posted @ 2013-02-02 14:11 icedog 阅读(519) 评论(0) 推荐(0) 编辑
摘要: http://technet.microsoft.com/en-us/library/cc512725%28v=office.12%29.aspx移动内容数据库和配置数据库http://sharepointsherpa.com/2008/04/18/sharepoint-2007-move-content-and-configuration-databases/ 阅读全文
posted @ 2013-01-06 22:41 icedog 阅读(259) 评论(0) 推荐(0) 编辑
摘要: AndroidManifest.xml<uses-permission android:name="android.permission.RESTART_PACKAGES" /><uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>main.javapackage com.mrsoft.mrgps.app.mr;import android.app.Activity;import android 阅读全文
posted @ 2012-02-26 16:44 icedog 阅读(3409) 评论(0) 推荐(1) 编辑