摘要: 一、 DLL与应用程序动态链接库(也称为DLL,即为“Dynamic Link Library”的缩写)是Microsoft Windows最重要的组成要素之一,打开Windows系统文件夹,你会发现文件夹中有很多DLL文件,Windows就是将一些主要的系统功能以DLL模块的形式实现。动态链接库是不能直接执行的,也不能接收消息,它只是一个独立的文件,其中包含能被程序或其它... 阅读全文
posted @ 2009-06-25 17:09 iDEAAM 阅读(248) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace Utility{ public class ISExt { private static ISExt instance = null; public static ISExt G... 阅读全文
posted @ 2009-06-25 17:05 iDEAAM 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 网站完成后,需要部署到目标机器上,方法有很多,直接把文件Copy到目标机器上,执行SQL脚本,配置IIS,这样可以做到;也可以使用InstallShield这样到专业制作软件来打包。本篇文章是使用VS2005自带到安装部署工具来制作exe安装文件。涉及到到内容包括:使用安装部署工具,建立数据库,配置IIS,文件操作,注册表等。参考了网上关于使用VS制作安装程序的文章。环境:Windows2003 ... 阅读全文
posted @ 2009-06-25 16:57 iDEAAM 阅读(243) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; using System.Web; using System.Drawing; //GIF验证码类 public class Validate { //设置最少4位验证码 private byte TrueValidateCodeCount = 4; public byte ValidateCodeCount { get { retu... 阅读全文
posted @ 2009-06-25 16:50 iDEAAM 阅读(1281) 评论(2) 推荐(1) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; using System.IO; namespace Foxer_Player_1._1 { public struct Mp3Info { public string identify; //TAG,三个字节 public string Title; //... 阅读全文
posted @ 2009-06-25 16:43 iDEAAM 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 用VS2005建立一个windows项目,取名test引用dll文件编写代码,正常引用dll里的类库,同时在test项目添加资源文件(该文件就是刚才引用的dll文件)VS2005会自动生成引用代码,我这里引用的是IrisSkin2.dllinternal static byte[] IrisSkin2{ get{object obj = ResourceManager.GetObject("Iri... 阅读全文
posted @ 2009-06-25 16:41 iDEAAM 阅读(657) 评论(0) 推荐(0) 编辑