上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: [DllImport("User32.dll")] private static extern bool SetCursorPos(int x, int y); SetCursorPos(intX, intY); 阅读全文
posted @ 2022-06-22 14:32 芈璐 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 运用到Graphics类,可以参阅该类的详解。 [DllImport("User32.dll")] public extern static System.IntPtr GetDC(System.IntPtr hWnd); System.IntPtr DesktopHandle = GetDC(Sy 阅读全文
posted @ 2022-06-22 14:30 芈璐 阅读(562) 评论(0) 推荐(0) 编辑
摘要: 打开微软商店,搜索TranslucentTB(汉化 by tpxxn) 安装后即可。 阅读全文
posted @ 2022-06-15 17:37 芈璐 阅读(439) 评论(0) 推荐(0) 编辑
摘要: TabControl Appearance属性设置FlatButtons ItemSizes属性设置0,1 SizeMode属性设置Fixed 设置前: 设置后: 阅读全文
posted @ 2022-03-24 15:56 芈璐 阅读(611) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE #T (NAME nvarchar(100),ROWS char(20),reserved varchar(18) ,Data varchar(18) ,index_size varchar(18) ,Unused varchar(18) ) GO INSERT #T EX 阅读全文
posted @ 2022-03-20 11:05 芈璐 阅读(1576) 评论(0) 推荐(0) 编辑
摘要: select top 50 (total_logical_reads/execution_count) as avg_logical_reads, (total_logical_writes/execution_count) as avg_logical_writes, (total_physica 阅读全文
posted @ 2021-12-10 14:43 芈璐 阅读(320) 评论(0) 推荐(0) 编辑
摘要: if (MessageBox.Show("内容", "标题", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.OK) { } 阅读全文
posted @ 2021-11-26 09:18 芈璐 阅读(550) 评论(0) 推荐(0) 编辑
摘要: --查询当前服务器实际名称,可能与计算机名不一致 select @@SERVERNAME --查询当前计算机名称 select SERVERPROPERTY('ServerName') --查看所有定义的服务器 sp_helpserver --从本地 SQL Server 实例中的已知远程服务器和链 阅读全文
posted @ 2021-11-01 12:39 芈璐 阅读(811) 评论(0) 推荐(0) 编辑
摘要: SELECT SERVERPROPERTY('ServerName') SELECT SERVERPROPERTY('MachineName') SELECT @@SERVERNAME SELECT HOST_NAME() 阅读全文
posted @ 2021-11-01 11:00 芈璐 阅读(301) 评论(0) 推荐(0) 编辑
摘要: IF EXISTS (SELECT * FROM sys.databases WHERE NAME='DATABASE_SS') BEGIN DROP DATABASE DATABASE_SS; END GO CREATE DATABASE DATABASE_SS ON (NAME = DATABA 阅读全文
posted @ 2021-10-28 15:09 芈璐 阅读(70) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页