上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 52 下一页
摘要: alter table HFEventInfo add [_Color] [nvarchar](100) NULL --颜色 alter table HFEventInfo add [_WH] [nvarchar](100) NULL --宽高 alter table HFEventInfo add [_Ico] [nvarchar](max) NULL --图标 alter tabl... 阅读全文
posted @ 2019-10-12 16:07 enych 阅读(687) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/hhhh2010/p/9821409.html https://www.v2ex.com/t/514710 阅读全文
posted @ 2019-10-12 10:56 enych 阅读(9191) 评论(0) 推荐(1)
摘要: 子窗体 public event Action> myEvent; myEvent(List); 子窗体调用 父窗体 创建对象 frm.myEvent += Set物料; private void Set物料(List list)() { } 阅读全文
posted @ 2019-10-09 17:55 enych 阅读(523) 评论(0) 推荐(0)
摘要: Adobe Acrobat DCC:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\AdobeGCClient\customhook C:\Program Files (x86)\Common Files\Adobe\AdobeGCClient C:\Program Files (x86)\Common Files\Adobe\OOBE\PDA 阅读全文
posted @ 2019-10-08 14:46 enych 阅读(802) 评论(3) 推荐(0)
摘要: 阅读全文
posted @ 2019-10-08 11:44 enych 阅读(2333) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-10-08 10:19 enych 阅读(239) 评论(0) 推荐(0)
摘要: 来自 : http://www.softwhy.com/article-6078-1.html 阅读全文
posted @ 2019-09-29 17:30 enych 阅读(21666) 评论(0) 推荐(0)
摘要: select * INTO #A_A from A --查询A中数据; 把查询的数据创建为 临时表 select * from #A_A --查询临时表 DROP TABLE #A_A; --删除临时表 阅读全文
posted @ 2019-09-28 10:07 enych 阅读(3329) 评论(0) 推荐(0)
摘要: //定义委托 ; 参数为方法名称 public delegate void UpdateLabel(string label); //control.invoke(参数delegate)方法:在拥有此控件的基础窗口句柄的线程上执行指定的委托。 //timeElapsedInstring 是UpdateUI方法的参数。 //lbl... 阅读全文
posted @ 2019-09-27 11:09 enych 阅读(236) 评论(0) 推荐(0)
摘要: Hashtable ht = new Hashtable(); ht["标题"] = 10; ht["B"] = ht["标题"]; ht.Remove("标题"); 阅读全文
posted @ 2019-09-27 08:50 enych 阅读(503) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 52 下一页