摘要:
开发程序时,有时我们需要鼠标滑过空件时鼠标变成手型,这样触发动作更为贴近实际。但是有的控件不存在Cursor这个属性,就需要我们自己实现。 具体方法: /// <summary> /// 鼠标落入区域时变手型 /// </summary> /// <param name="sender"></par 阅读全文
摘要:
--首先查看有哪些锁 select /*+ rule */ s.username, decode(l.type,'TM','TABLE LOCK','TX','ROW LOCK',null) lock_level, o.owner, o.object_name, o.object_type, s.s 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; using System.Data; namespace ConsoleApplication1 { /// <summary> /// 在返回的table处大断点查 阅读全文
摘要:
日期格式:yyyyMMdd HH:mm:ss(注意此字符串的字母大小写很严格) yyyy:代表年份 MM: 代表月份 dd: 代表天 HH: 代表小时(24小时制) mm: 代表分钟 ss: 代表秒 //string格式的日期转为DateTime类型 DateTime dt1 = Convert.D 阅读全文
摘要:
今天无意中发现要根据日期查询时间,datatimepicker控件会把时间默认成当前时间(当你的控件只显示日期时),这样查询出来的出来的数据会有误差,用来下面的办法成功设置日期为当天日期,而时间设为0:00或23:59。 //日期起时间 2014-04-04 00:00 DateTime dStar 阅读全文