摘要:
/// <summary> /// 导出数据到Excel /// </summary> public void loadDataToExcel() { if (this.Rows.Count <= 0) { MessageBox.Show("没有数据,无法导出!"); return; } //创建E 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Drawing.Printing;using System.Drawing;using System.Windows.Forms;using Sy 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text; namespace PublicClass{ /// <summary> /// Copyright(c) 2008~2011 KingBoy Software Co., 阅读全文
摘要:
using System.Security.Cryptography;using System.IO;using System.Text;using System;using System.Collections.Generic;using System.Windows.Forms;namespac 阅读全文
摘要:
字符描述 \ 将下一个字符标记为一个特殊字符、或一个原义字符、或一个 向后引用、或一个八进制转义符。例如,'n' 匹配字符 "n"。'\n' 匹配一个换行符。序列 '\\' 匹配 "\" 而 "\(" 则匹配 "("。 ^ 匹配输入字符串的开始位置。如果设置了 RegExp 对象的 Multilin 阅读全文
摘要:
在项目类库中已经引用了相关了类库,生成解决方案也没问题,但是到了后置代码,通过using引用其他类库的时候,再生成解决方案或者生成单个类库,就会报“未能找到类型或命名空间“xxx"(是否缺少using指令或程序引用?)” 之类的错误,曾经在写asp.net的时候也碰到过1次,当时解决方法是重新建立一 阅读全文