上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 52 下一页
摘要: 转自: https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export 主 HTML <!DOCTYPE html> <html> <head> <script type="module" src 阅读全文
posted @ 2020-03-20 14:10 enych 阅读(283) 评论(0) 推荐(0) 编辑
摘要: intel 1211网卡驱动来源https://www.changwang.com/down/showdownload.php?id=16 阅读全文
posted @ 2020-03-20 08:38 enych 阅读(2175) 评论(0) 推荐(0) 编辑
摘要: private void AlarmDemo_FormClosing(object sender, FormClosingEventArgs e) { ////MessageBox.Show("你按下了ESC"); DialogResult dr = MessageBox.Show("确定要退出吗? 阅读全文
posted @ 2020-03-17 09:09 enych 阅读(808) 评论(0) 推荐(0) 编辑
摘要: 阮一峰 http://www.ruanyifeng.com/blog/2008/06/base64.html imweb : https://imweb.io/topic/5b8ea5327cd95ea86319358a 阅读全文
posted @ 2020-03-16 09:15 enych 阅读(266) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>files-h5</title> </head> <body> <input type="file" id="file" onchange="showPreview(this, ' 阅读全文
posted @ 2020-03-16 08:58 enych 阅读(696) 评论(0) 推荐(0) 编辑
摘要: byte[] bUserInfoSearch = new byte[1024 * 10]; //10kb大小 Marshal.Copy(lpBuffer, bUserInfoSearch, 0, bUserInfoSearch.Length); string strUserInfoSearch = 阅读全文
posted @ 2020-03-13 11:37 enych 阅读(1337) 评论(0) 推荐(0) 编辑
摘要: 1、使用端口过滤: tcp.port >=52330 and tcp.port<=52331 使用端口+ip过滤 tcp.port >=8000 and tcp.port<=8000 and ip.src==192.168.1.76 tcp.port >=8000 and tcp.port<=800 阅读全文
posted @ 2020-03-10 15:05 enych 阅读(216) 评论(0) 推荐(0) 编辑
摘要: //托管内存中的数据 复制到非托管内存中 IntPtr ptrURL = Marshal.StringToHGlobalAnsi("123465"); //释放在非托管中分配的内存 Marshal.FreeHGlobal(ptrURL); NET_DVR_StartRemoteConfig(0,0, 阅读全文
posted @ 2020-03-10 14:11 enych 阅读(796) 评论(0) 推荐(0) 编辑
摘要: //定义一个委托 public delegate void RemoteConfigCallback(uint dwType, IntPtr lpBuffer, uint dwBufLen, IntPtr pUserData); //定义一个函数 private void ProcessUserIn 阅读全文
posted @ 2020-03-10 11:56 enych 阅读(400) 评论(0) 推荐(0) 编辑
摘要: public class test { //属性 public unicode_gb[] m_unicode_gb = new unicode_gb[10]; public A[] m_A = new A[10]; public class A { public int unicode; publi 阅读全文
posted @ 2020-03-09 17:24 enych 阅读(1367) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 52 下一页