会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
人生为卒
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
12
13
14
15
16
17
18
19
20
···
30
下一页
2017年11月28日
复制datatable,把类型变为字符串
摘要: 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)
2017年11月24日
泛类型的使用
摘要: 类型: 返回结果:
阅读全文
posted @ 2017-11-24 15:52 人生为卒
阅读(176)
评论(0)
推荐(0)
2017年10月15日
线程间操作无效: 从不是创建控件“button1”的线程访问它。
摘要: 转载:http://www.cnblogs.com/nsky/p/4436309.html .net2后是不能跨线程访问控件的。,窗体上的控件是当前线程创建的,当用户异步执行一个方法:在该方法中给窗体上的控件赋值,记住:当执行一个异步委托的时候,其实 就是开了一个线程去执行那个方法,这样就会报错:线
阅读全文
posted @ 2017-10-15 10:01 人生为卒
阅读(305)
评论(0)
推荐(0)
2017年10月9日
html 定时执行
摘要:
阅读全文
posted @ 2017-10-09 18:12 人生为卒
阅读(353)
评论(0)
推荐(0)
2017年9月19日
.dialog打开时执行方法
摘要: //主界面代码 //打开界面代码
阅读全文
posted @ 2017-09-19 20:31 人生为卒
阅读(659)
评论(0)
推荐(0)
2017年9月18日
更新系统时间
摘要: 转载: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)
2017年9月13日
复制对象
摘要: 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)
2017年9月4日
如何安装windows服务
摘要: 转 http://www.cnblogs.com/pingfanren/archive/2015/11/22/4986053.html
阅读全文
posted @ 2017-09-04 09:50 人生为卒
阅读(119)
评论(0)
推荐(0)
2017年8月9日
datagrid手动分页数据
摘要: #region 进行分页处理 ///返回页面源数据 List lstSource = db.Fetch(sql); ; ///返回页面分页数据 List lstPage = new List(); //当前分页...
阅读全文
posted @ 2017-08-09 15:48 人生为卒
阅读(131)
评论(0)
推荐(0)
2017年8月8日
动态修改easyui-datagrid 列
摘要: <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
下一页
公告