01 2020 档案

摘要:1600.1.1 1699.12.31 17世纪 1700.1.1 1799.12.31 18世纪 1800.1.1 1899.12.31 19世纪 1900.1.1 1999.12.31 20世纪 2000.1.1 2099.12.31 21世纪 阅读全文
posted @ 2020-01-28 19:19 enych 阅读(998) 评论(0) 推荐(0) 编辑
摘要:Dictionary<string, int> list = new Dictionary<string, int>(); list.Add("d", 1); //3.0以上版本 foreach (var item in list) { Console.WriteLine(item.Key + it 阅读全文
posted @ 2020-01-25 21:22 enych 阅读(237) 评论(0) 推荐(0) 编辑
摘要:https://bbs.pediy.com/thread-178926.htm 普通模式调用SendMessage、PostMessage,增强模式调用keybd_event,mouse_event、 SendInput发送键盘鼠标消息。只要HOOK 内核层的NtUserPostThreadMess 阅读全文
posted @ 2020-01-20 08:59 enych 阅读(1051) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2020-01-19 20:53 enych 阅读(464) 评论(0) 推荐(0) 编辑
摘要:private void timer1_Tick(object sender, EventArgs e) { if (GetAsyncKeyState(0x01) > 0) { keydown(); } //按下的时候开启 /* 开启时钟 */ //松开的时候关闭 /* 关闭时钟 */ } [Dll 阅读全文
posted @ 2020-01-19 16:29 enych 阅读(561) 评论(0) 推荐(0) 编辑
摘要:#region --设置指定窗口名称为隐藏 // 获取查找窗体句柄(通过窗体标题名) //通过句柄设置当前窗体最大化(0:隐藏窗体,1:默认窗体,2:最小化窗体,3:最大化窗体,....) IntPtr mainHandle = FindWindow(null, "屏幕键盘"); bool resu 阅读全文
posted @ 2020-01-15 15:55 enych 阅读(1195) 评论(0) 推荐(0) 编辑
摘要:一、利用注册表文件将外部协议写入注册表 [HKEY_CLASSES_ROOT\PCTV] @="PCTVProtocol" "URL Protocol"="\"C:\\Program Files (x86)\\PCTV双模软终端_64位\\PCTV.exe\"" [HKEY_CLASSES_ROOT 阅读全文
posted @ 2020-01-15 11:04 enych 阅读(1518) 评论(0) 推荐(0) 编辑
摘要:<00001> 00040AD2 S WM_SYSCOMMAND uCmdType:SC_MINIMIZE xPos:570 yPos:284 <00002> 00040AD2 R WM_SYSCOMMAND 00001 00002 其中 wParam 0000 F020 //0000 0000 0 阅读全文
posted @ 2020-01-14 18:03 enych 阅读(1218) 评论(0) 推荐(0) 编辑
摘要:#region 暂停进程 //检测进程是否存在 public List<IntPtr> get_pressId(string pressName = "explorer") { List<IntPtr> list = new List<IntPtr>(); //获得进程ID Process[] pr 阅读全文
posted @ 2020-01-11 14:21 enych 阅读(2227) 评论(0) 推荐(0) 编辑
摘要:var file = "C:\\Windows\\System32\\osk.exe"; Process.Start(file); 报错 找不到文件 使用 win32API 也打不开 可以打Calc.exe using System; using System.Collections.Generic 阅读全文
posted @ 2020-01-10 18:03 enych 阅读(649) 评论(0) 推荐(0) 编辑
摘要:private void button2_Click(object sender, EventArgs e) { WIN32_FIND_DATA FindFileData1 = new WIN32_FIND_DATA(); var file = "C:\\Windows\\System32\\osk 阅读全文
posted @ 2020-01-10 17:07 enych 阅读(370) 评论(0) 推荐(0) 编辑
摘要://鼠标滑动事件 // 开始按下手机的起点坐标 var startPoint = null; document.addEventListener("touchstart", function (e) { var e = e || window.event; startPoint = e.touche 阅读全文
posted @ 2020-01-10 08:47 enych 阅读(4200) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/SuperMetalMax/p/6625954.html 阅读全文
posted @ 2020-01-09 17:54 enych 阅读(416) 评论(0) 推荐(0) 编辑
摘要:<div id="div1" style="width: 300px;height: 300px;background-color: aquamarine; padding-top: 20px;"> <div style="width: 100px;height: 100px;background- 阅读全文
posted @ 2020-01-07 16:34 enych 阅读(1346) 评论(0) 推荐(0) 编辑
摘要:A表数据 编码 1 其他 A B表数据 编码 1 时间 2 编码 1 时间 3 编码 2 时间 4 编码 2 时间 5 Left jon 结果 是 编码 1 其他A 时间2 编码 1 其他A 时间3 怎么样 查询 显示 编码 1 其他A 时间3 select A.编码,A.其他,MAX(时间) fr 阅读全文
posted @ 2020-01-02 10:42 enych 阅读(149) 评论(0) 推荐(0) 编辑
摘要:、 经发现 innerHTML: "<i class="larry-icon undefined" data-icon="undefined"></i><cite>添加的2级菜单2020/1/1 17:41:38</cite><i class="layui-icon layui-unselect l 阅读全文
posted @ 2020-01-01 20:31 enych 阅读(275) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head> <style> .div1 { height: 45px; line-height: 45px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; width: 阅读全文
posted @ 2020-01-01 19:53 enych 阅读(121) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示