摘要: private const int INTERNET_CONNECTION_MODEM = 1; private const int INTERNET_CONNECTION_LAN = 2; private const int INTERNET_CONNE... 阅读全文
posted @ 2014-07-07 18:57 b̶i̶n̶g̶.̶ 阅读(1459) 评论(0) 推荐(0) 编辑
摘要: 解决方案:手动添加Handler,因为e.Handled这个属性是用在路由事件中的,当某个控件得到一个RoutedEvent,就会检测Handled是否为true,为true则忽略该事件。//手动注册 this.AddHandler(MouseLeftButtonUpEvent, new Mouse... 阅读全文
posted @ 2014-07-07 18:53 b̶i̶n̶g̶.̶ 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1 #region 打开键盘的键 2 const uint KEYEVENTF_EXTENDEDKEY = 0x1; 3 const uint KEYEVENTF_KEYUP = 0x2; 4 5 [DllImport("user3... 阅读全文
posted @ 2014-07-07 11:21 b̶i̶n̶g̶.̶ 阅读(439) 评论(0) 推荐(0) 编辑
摘要: [DllImport("user32.dll")] static extern bool GetLastInputInfo(ref LASTINPUTINFO plii); public static long GetIdleTick() {... 阅读全文
posted @ 2014-07-03 11:29 b̶i̶n̶g̶.̶ 阅读(377) 评论(0) 推荐(0) 编辑
摘要: .NET技术交流群 199281001 .欢迎加入。 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Windows; ... 阅读全文
posted @ 2014-07-03 10:52 b̶i̶n̶g̶.̶ 阅读(1094) 评论(1) 推荐(0) 编辑
摘要: 1、删除所有表use 数据库declare @tname varchar(8000)set @tname=''select @tname=@tname + Name + ',' from sysobjects where xtype='U'select @tname='drop table ' + ... 阅读全文
posted @ 2014-07-01 14:53 b̶i̶n̶g̶.̶ 阅读(181) 评论(0) 推荐(0) 编辑
摘要: DECLARE c1 cursor for select 'alter table ['+ object_name(parent_obj) + '] drop constraint ['+name+']; ' from sysobjects where xtype = 'F'ope... 阅读全文
posted @ 2014-07-01 14:51 b̶i̶n̶g̶.̶ 阅读(489) 评论(0) 推荐(0) 编辑
摘要: http://www.doc88.com/p-125261828912.html 阅读全文
posted @ 2014-07-01 14:48 b̶i̶n̶g̶.̶ 阅读(142) 评论(0) 推荐(0) 编辑
摘要: http://wenku.baidu.com/link?url=5E91XOmzUCVIbvRE8jxVbHEWl3h-V_iiognb3dd5xqJlI8RCPVSaGGVinYUhE_4-9AHmTbXVI0lqlmZNxMbVLSc2ftnDucFELrjkN1gJiMW 阅读全文
posted @ 2014-07-01 14:47 b̶i̶n̶g̶.̶ 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1 Application Name(应用程序名称):应用程序的名称。如果没有被指定的话,它的值为.NET SqlClient Data Provider(数据提供程序). 2 AttachDBFilename/extended properties(扩展属性)/Initial File Name... 阅读全文
posted @ 2014-07-01 14:46 b̶i̶n̶g̶.̶ 阅读(649) 评论(0) 推荐(0) 编辑