博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 75 下一页

2011年4月6日

摘要: DataGridViewCheckBoxColumn newColumn = new DataGridViewCheckBoxColumn();newColumn.HeaderText = "选择";dataGridView1.Columns.Add(newColumn);这样添加的列是放在最后一列,也许你希望它在其它列,例如第二列,那么可以:dataGridView1.Columns.Insert(1, newColumn);DataGridView中的DataGridViewCheckBoxColumn是很难控制的,当 DataGridView 未绑定到数据时,对单元格 阅读全文

posted @ 2011-04-06 23:18 moss_tan_jun 阅读(34987) 评论(1) 推荐(1) 编辑

摘要: 方法一:private void dgv_zy_CellContentClick(object sender, DataGridViewCellEventArgs e){ int count = Convert.ToInt16(dgv_zy.Rows.Count.ToString()); for (int i = 0; i < count; i++) { DataGridViewCheckBoxCell checkCell = (DataGridViewCheckBoxCell)dgv_zy.Rows[i].Cells["cb_check"]; Boolean fla 阅读全文

posted @ 2011-04-06 23:13 moss_tan_jun 阅读(2030) 评论(0) 推荐(0) 编辑

摘要: this.dataGridView1.Columns["UnitPrice"].DefaultCellStyle.Format="c";this.dataGridView1.Columns["ShipDate"].DefaultCellStyle.Format="d"; 阅读全文

posted @ 2011-04-06 22:41 moss_tan_jun 阅读(256) 评论(1) 推荐(0) 编辑

2011年4月3日

摘要: 什么是正则表达式 正则表达式是用来检验和操作字符串的强大工具。简单的理解正则表达式可以认为是一种特殊的验证字符串。正则表达式常见运用是验证用户输入信息格式,比如上面的那组“\w{1,}@\w{1,}\.\w{1”,实际上就是验证邮件地址是否合法的;当然正则表达式不仅仅是用于验证,可以说只要运用字符串的地方都可以使用正则表达式;涉及的基本的类 正则表达式在英文中写作(Regular Expression),根据正则表达式的使用范围和单词意思,.NET将其命名空间设置为System.Text.RegularExpressions; 在该命名空间内包括了8个基本的类:Capture、CaptureC 阅读全文

posted @ 2011-04-03 23:34 moss_tan_jun 阅读(14259) 评论(0) 推荐(0) 编辑

摘要: public class OrdersType { private string _OrderNum; public string OrderNum { get { return _OrderNum; } set { _OrderNum = value; } } private string _Invs_num; public string Invs_num { get { return _Invs_num; } set { _Invs_num = value; } } private string _CountryCode; public string CountryCode { get { 阅读全文

posted @ 2011-04-03 23:31 moss_tan_jun 阅读(1664) 评论(1) 推荐(0) 编辑

2011年3月26日

摘要: http://dev-forums.ebay.com/thread.jspa?threadID=500014948&messageID=500036369 阅读全文

posted @ 2011-03-26 23:54 moss_tan_jun 阅读(190) 评论(0) 推荐(0) 编辑

2011年3月22日

摘要: if (Regex.IsMatch(str,"[0-9]"))//数字 MessageBox.Show("字符串中包含有数字");if (Regex.IsMatch(str,"[a-z]"))//小写字母 MessageBox.Show("字符串中包含有小写字母");if (Regex.IsMatch(str,"[A-Z]"))//大写字母 MessageBox.Show("字符串中包含有小写字母");if (Regex.IsMatch(str,"[a-zA-Z]& 阅读全文

posted @ 2011-03-22 17:24 moss_tan_jun 阅读(271) 评论(0) 推荐(0) 编辑

摘要: /// <summary> /// 最简单的发送邮件实例 /// </summary> /// <param name="title">邮件标题</param> /// <param name="mailReceive">接收有地址</param> /// <param name="content">邮箱内容</param> public void MailSend(string title, string mailReceive,stri 阅读全文

posted @ 2011-03-22 17:08 moss_tan_jun 阅读(219) 评论(0) 推荐(0) 编辑

摘要: 1 static string GetIP()2 {//http://www.ip138.com/ip2city.asp3 Uri uri = new Uri("http://www.ikaka.com/ip/index.asp");4 System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(uri);5 req.Method = "POST";6 req.ContentType = "application/x-www-fo 阅读全文

posted @ 2011-03-22 17:03 moss_tan_jun 阅读(488) 评论(0) 推荐(0) 编辑

摘要: 问题描述: [Excel 源 [1]] 错误: 输出“Excel 源输出”(9) 上的 输出列“Description 3”(546) 出错。返回的列状态是:“文本被截断,或者一个或多个字符在目标代码页中没有匹配项。”。 该列在excel中最长为308个字符,但是excel源中的外部列和输出列最多只能设为Nvarchar(255),如果设定长度超过255,则出现警告,源列属性不匹配,执行也通不过。使用Ntext类型也尝试过,不匹配。 我使用ado.net倒是把它倒入到数据库了,但是发现所有超过255的都被截断了。 原因分析: ADO和SSIS的Excel源对数剧列的长度的判定存在问题。解决方案 阅读全文

posted @ 2011-03-22 16:48 moss_tan_jun 阅读(2340) 评论(0) 推荐(0) 编辑

上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 75 下一页