03 2011 档案

摘要:数据源:View Code var areaInfo = new Array();areaInfo[0] = new Array();areaInfo[0][0]="1";areaInfo[0][1]="Beijing";areaInfo[0][2]="0";areaInfo[0][3]="0";areaInfo[1] = new Array();areaInfo[1][0]="2";areaInfo[1][1]="Shanghai";areaInfo[1][2]=" 阅读全文
posted @ 2011-03-29 00:21 alex hu 阅读(444) 评论(0) 推荐(0) 编辑
摘要:前不久公司有个项目是在触摸屏上做产品展示,大家都觉得Iphone或者Android上的滑屏效果不错,我今天也顺便做了一个DEMO,滑屏效果的,预览图如下 演示地址:http://www.chuangyiwu.com/demo/jquery/lyhuctouchslider/下载地址:lyhuctouchslider.rar欢迎交流 阅读全文
posted @ 2011-03-25 15:04 alex hu 阅读(3501) 评论(16) 推荐(3) 编辑
摘要:前自己两天写了一个Jquery Slider插件,效果图如下: 支持IE 6.0以上 silderShowAdContentTitle_bg.gif silderShowAdContentTitle_overbg.png<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999 阅读全文
posted @ 2011-03-24 12:06 alex hu 阅读(587) 评论(3) 推荐(0) 编辑
摘要:从几天公司从中正生物采购了一些指纹设备,要用到自己的系统里面,指纹供应商提供的DLL是C++写的,我用C# 重新写了一下using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;using System.IO;using System.Drawing;using System.Drawing.Imaging;using System.ComponentModel;namespace EC.Shop.WindowsFo 阅读全文
posted @ 2011-03-18 16:11 alex hu 阅读(803) 评论(3) 推荐(0) 编辑
摘要:这段时间公司有个项目需要用到指纹识别,指纹识别硬件这个提供了一个DLL,DLL有个API 叫 mxUsbGetImage, 当手指头读取指纹的时候,实际上将指纹机的得到的 mxUsgGetImage 返回的byte类型,将byte[] 转成 image 有多种方法,下面是我昨天试过的两种(从网上COPY过来的)private unsafe Bitmap BytesToBmp(byte[] bmpBytes, Size imageSize){Bitmap bmp = new Bitmap(imageSize.Width, imageSize.Height);BitmapData bDa. 阅读全文
posted @ 2011-03-16 10:13 alex hu 阅读(2187) 评论(0) 推荐(0) 编辑