上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页
摘要: DataTable dtcp = tblDeliveryInfo.Clone(); foreach (DataColumn item in dtcp.Columns) { item.DataType = typeof(string); } foreach (D... 阅读全文
posted @ 2017-11-28 18:04 人生为卒 阅读(145) 评论(0) 推荐(0)
摘要: 类型: 返回结果: 阅读全文
posted @ 2017-11-24 15:52 人生为卒 阅读(176) 评论(0) 推荐(0)
摘要: 转载:http://www.cnblogs.com/nsky/p/4436309.html .net2后是不能跨线程访问控件的。,窗体上的控件是当前线程创建的,当用户异步执行一个方法:在该方法中给窗体上的控件赋值,记住:当执行一个异步委托的时候,其实 就是开了一个线程去执行那个方法,这样就会报错:线 阅读全文
posted @ 2017-10-15 10:01 人生为卒 阅读(305) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-10-09 18:12 人生为卒 阅读(353) 评论(0) 推荐(0)
摘要: //主界面代码 //打开界面代码 阅读全文
posted @ 2017-09-19 20:31 人生为卒 阅读(659) 评论(0) 推荐(0)
摘要: 转载:http://www.cnblogs.com/Xingsoft-555/archive/2009/12/18/1627524.html 方法1: 方法2 :(未验证) 就是利用Process类调用DOC命令更改系统时间 阅读全文
posted @ 2017-09-18 11:19 人生为卒 阅读(196) 评论(0) 推荐(0)
摘要: public class ObjectReflection { public static PropertyInfo[] GetPropertyInfos(Type type) { return type.GetProperties(BindingFlags.Public | BindingFlags.Instance); ... 阅读全文
posted @ 2017-09-13 19:42 人生为卒 阅读(122) 评论(0) 推荐(0)
摘要: 转 http://www.cnblogs.com/pingfanren/archive/2015/11/22/4986053.html 阅读全文
posted @ 2017-09-04 09:50 人生为卒 阅读(119) 评论(0) 推荐(0)
摘要: #region 进行分页处理 ///返回页面源数据 List lstSource = db.Fetch(sql); ; ///返回页面分页数据 List lstPage = new List(); //当前分页... 阅读全文
posted @ 2017-08-09 15:48 人生为卒 阅读(131) 评论(0) 推荐(0)
摘要: <table id="DataList" title="查询结果" style="width:99%;padding:10px;"></table> ① 隐藏列 $('#DataList').datagrid('hideColumn', 'Columnfield'); ② 动态修改列标题 $('di 阅读全文
posted @ 2017-08-08 17:23 人生为卒 阅读(671) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页