walk along at the far from top

沙尘里的世界

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2008年11月21日

摘要: ICompress.cs using System;using System.Collections;using System.Collections.Generic;using System.Text; namespace Dyne.Compress{ /// /// 压缩解压接口 /// public interface ICompress { ... 阅读全文
posted @ 2008-11-21 14:04 lexod 阅读(370) 评论(0) 推荐(0) 编辑

摘要: private void comJg_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) { ComboBox comb = (ComboBox)sender; if (Convert.ToInt32(e.KeyChar) == 13) ... 阅读全文
posted @ 2008-11-21 13:51 lexod 阅读(407) 评论(0) 推荐(0) 编辑

摘要: Invalidate.cs using System;using System.Data;using System.Configuration; using System.Text.RegularExpressions;/// /// MyStringClass 的摘要说明/// created by lxd 2008-11-04/// 用于信息验证/// namespace commClass... 阅读全文
posted @ 2008-11-21 13:37 lexod 阅读(495) 评论(0) 推荐(0) 编辑

摘要: EventLog.cs //本来是想用.net里面的TraceSource来实现的 //msdn上说支持多线程,可是每次写完日志的时候TraceSource不会自己关闭流文件//所以直接用流打开直接写了,以后有空改进一下TraceSource的方式写日志,毕竟可以//Trace到不同的地方(比如Console窗口,windows系统日志),呵呵//还有就是写一个支持多线程调用的类真的不容易呀us... 阅读全文
posted @ 2008-11-21 13:30 lexod 阅读(533) 评论(0) 推荐(0) 编辑