一个读取数据库字典的C#类
摘要:在做项目时,经常会有些字典信息保存到数据库中,在应用程序启动时需要加载到内存中,方便程序随时调用。直接上代码:using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.OleDb;namespace TagReceiver{ class AccessHelper { string accessPath = ""; /// <summary> /// 读...
阅读全文
posted @
2012-08-23 14:39
onedime
阅读(2518)
推荐(0)
用C#写的一个注册表操作类
摘要:本文介绍了一个用C#写的注册表操作类,实现了对注册表的读、写、删、查。
阅读全文
posted @
2012-08-23 14:21
onedime
阅读(12225)
推荐(3)
C#中如何设置窗体的默认按钮和取消按钮
摘要:介绍了如何在C#窗体中设置默认按钮和取消按钮。
阅读全文
posted @
2012-08-23 13:53
onedime
阅读(6346)
推荐(0)