posted @ 2008-10-29 23:43 matthewZhang 阅读(1005) 评论(2) 推荐(0) 编辑
摘要:
理解一:事件委托的概念
.NET框架的事件委托遵循特定的签名和命名约定。这种约定依赖于可视化设计工具,为客户端代码提供了一致性的模型。为了理解这种约定,下面来看看.NET框架中一个常见的可访问事件委托System.EventHandler: 阅读全文
摘要:
一、验证类
1、数字验证内
1.1 整数
1.2 大于0的整数 (用于传来的ID的验证)
1.3 负整数的验证
1.4 整数不能大于iMax
1.5 整数不能小于iMin
2、时间类
2.1 短时间,形如 (13:04:06) 阅读全文
posted @ 2008-10-29 23:37 matthewZhang 阅读(152) 评论(0) 推荐(0) 编辑
摘要:
Visual Studio .Net以前的版本,要对注册表进行修改,则需要调用系统API,而现在则不用那么麻烦,因为.Net已经把注册表相关的操作封装到一个类中,调用的时候只要只要调用此类对象相应的属性或方法即可。
以下就注册表这个类进行说明。
首先,要引入注册类所在的nampespace,如下: 阅读全文
posted @ 2008-10-29 23:28 matthewZhang 阅读(150) 评论(0) 推荐(0) 编辑
摘要:
摘自http://www.cnblogs.com/thcjp/archive/2008/07/23/1249389.html,个人备用.. Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.Colle... 阅读全文
posted @ 2008-10-29 23:18 matthewZhang 阅读(222) 评论(0) 推荐(0) 编辑
摘要:
最简单的ICallbackEventHandler实现异步回调.. 阅读全文
posted @ 2008-10-29 23:12 matthewZhang 阅读(184) 评论(0) 推荐(0) 编辑
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->CREATE PROCEDURE dbo.UspOutputData @tablename sysname AS declare @column varchar(1000) declare @c... 阅读全文
posted @ 2008-10-29 23:04 matthewZhang 阅读(957) 评论(0) 推荐(1) 编辑