会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
LuoCore
LuoCore
www.LuoCore.com
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
30
31
32
33
34
35
36
37
38
···
52
下一页
2019年3月7日
sqlserver 判断字符串是否是数字
摘要: 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)
2019年3月5日
CSS: hover选择器的使用
摘要: 用法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)
2019年2月27日
TTS 语音修复 ,缺少文件的,没注册类的
摘要: 完美运行 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)
2019年2月19日
sqlserver 查找某个字段在哪张表里
摘要: 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)
2019年1月17日
Excel 表格查找重复数据,去重复统计
摘要: 找出表格是否有重复数据: =IF(AND(G20=G19,D20=D19),"是","否") 筛选移除【重复的数据】然后开始统计 =SUBTOTAL(9,E2:E287)
阅读全文
posted @ 2019-01-17 19:14 LuoCore
阅读(1591)
评论(0)
推荐(0)
2019年1月11日
C# HttpWebResponse WebClient 基础连接已经关闭: 发送时发生错误.
摘要: 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)
2019年1月8日
C# 控件置于最顶层、最底层
摘要: btn.BringToFront();//将控件放置所有控件最前端 btn.SendToBack();//将控件放置所有控件最底端
阅读全文
posted @ 2019-01-08 16:13 LuoCore
阅读(1965)
评论(0)
推荐(0)
2018年12月22日
C# 线程 正确使用Thread.Join()停止方式
摘要: /// <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)
C# winfrom 整个界面重绘
摘要: Invalidate();
阅读全文
posted @ 2018-12-22 18:32 LuoCore
阅读(1507)
评论(0)
推荐(0)
C# 在创建窗口句柄之前,不能在控件上调用 Invoke 或 BeginInvoke
摘要: 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
下一页
公告