上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 52 下一页
摘要: https://www.cnblogs.com/zjfblog/p/5625202.html sql2005有个函数ISNUMERIC(expression)函数:当expression为数字时,返回1,否则返回0。这只是一个菜鸟级的解决办法,大多数情况比较奏效。 eg: select ISNUME 阅读全文
posted @ 2019-03-07 15:02 LuoCore 阅读(2146) 评论(0) 推荐(1)
摘要: 用法1:这个表示的是:当鼠标悬浮在a这个样式上的时候,a的背景颜色设置为黄色 a:hover { background-color:yellow; }用法2:使用a 控制其他块的样式: 使用a控制a的子元素 b: .a:hover .b { background-color:blue; } 使用a控 阅读全文
posted @ 2019-03-05 11:16 LuoCore 阅读(328) 评论(0) 推荐(0)
摘要: 完美运行 http://bbs.nga.cn/read.php?tid=13292628&rand=492 Win7系统TTS修复-采用原生Win7提取绿色修复 Win7系统TTS修复-采用原生Win7提取绿色修复 一键自动修复,控制面板里有语音识别--从文本到语音可以选择微软语音中文LiLi或英文 阅读全文
posted @ 2019-02-27 19:05 LuoCore 阅读(1223) 评论(0) 推荐(0)
摘要: select [name] from [库名].[dbo].sysobjects where id in(select id from [库名].[dbo].syscolumns Where name='字段名') 阅读全文
posted @ 2019-02-19 09:36 LuoCore 阅读(822) 评论(0) 推荐(0)
摘要: 找出表格是否有重复数据: =IF(AND(G20=G19,D20=D19),"是","否") 筛选移除【重复的数据】然后开始统计 =SUBTOTAL(9,E2:E287) 阅读全文
posted @ 2019-01-17 19:14 LuoCore 阅读(1591) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/sun49842566/article/details/82802297 net 4.0 设置: ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; //.net 4.5 设 阅读全文
posted @ 2019-01-11 18:18 LuoCore 阅读(2135) 评论(0) 推荐(0)
摘要: btn.BringToFront();//将控件放置所有控件最前端 btn.SendToBack();//将控件放置所有控件最底端 阅读全文
posted @ 2019-01-08 16:13 LuoCore 阅读(1965) 评论(0) 推荐(0)
摘要: /// <summary> /// 停下线程 /// </summary> private void MyStopTask() { new Action(() => { if (thread != null) { while (thread.ThreadState != System.Threadi 阅读全文
posted @ 2018-12-22 19:33 LuoCore 阅读(2414) 评论(0) 推荐(0)
摘要: Invalidate(); 阅读全文
posted @ 2018-12-22 18:32 LuoCore 阅读(1507) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/fish124423/archive/2012/10/16/2726543.html 在Invoke(....)之前加上1 this.components==null 2 this.IsDisposed 3 IsHandleCreated 来return 阅读全文
posted @ 2018-12-22 17:06 LuoCore 阅读(1235) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 52 下一页