摘要: SQL语句的添加、删除、修改多种方法 阅读全文
posted @ 2012-03-09 16:00 程序猿网友666 阅读(986) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace UI{ /// /// 注: 本文是转载的 /// 主要验证: 网址,IP,邮箱,电话,手机,数字,英文,日期,身份证,邮编, 等... /// 使用说明:只要把这个类添加到程序中 调用即可 你懂得.... /// 现来源:http://www.cnblogs.com/chenghu/archive/2012... 阅读全文
posted @ 2012-01-13 17:28 程序猿网友666 阅读(423) 评论(0) 推荐(1)
摘要: 复制表,sql,子查询,视图 阅读全文
posted @ 2012-01-09 11:26 程序猿网友666 阅读(202) 评论(0) 推荐(0)
摘要: 首先,选中CellMouseClick事件(别问为什么)然后,复制这个代码再然后就行了。。。你试后就明白了。。。private void dataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e) { switch (e.ColumnIndex) { case 0: MessageBox.Show("这是第零列得"); break; default: break; } } 阅读全文
posted @ 2012-01-05 10:35 程序猿网友666 阅读(489) 评论(0) 推荐(1)