12 2022 档案

windows 禁止ping 和 允许 ping
摘要:以管理员身份启动 cmd.exe: 启用 ping: netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow 禁用 阅读全文

posted @ 2022-12-28 17:57 空明流光 阅读(247) 评论(0) 推荐(0) 编辑

windows 隐藏分区
摘要:windows10_X64旗舰版系统,笔记本或者新买的PC机,可能会存在个别存放恢复系统文件的分区,平时又用不了,还在“我的电脑”里面碍眼,因此查到利用注册表隐藏硬盘分区的方法,记录下来 1、运行输入:regedit 回车 2、打开注册表编辑器,参考路径:HKEY_LOCAL_MACHINE\SOF 阅读全文

posted @ 2022-12-18 21:34 空明流光 阅读(537) 评论(0) 推荐(0) 编辑

C# 获取指定固定范围内的比例固定的实际图片大小
摘要:Rectangle? getImageRegion(PictureBox pic) { if (pic.Image == null) return null; var picHeight = pic.Width * pic.Image.Height / pic.Image.Width; if (pi 阅读全文

posted @ 2022-12-14 18:22 空明流光 阅读(296) 评论(0) 推荐(0) 编辑

C# winform picturebox 选中区域
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文

posted @ 2022-12-14 14:30 空明流光 阅读(532) 评论(0) 推荐(0) 编辑

SAFEARRAY 使用转载
摘要:创建SAFEARRAY: SAFEARRAY* SafeArrayCreate( //于建立多维普通数组 VARTYPE vt, //属性类型,一般设置为VT_VARIANT unsigned intcDims, //维度 SAFEARRRAYBOUND *rgsabound //传入SAFEARR 阅读全文

posted @ 2022-12-13 11:27 空明流光 阅读(320) 评论(0) 推荐(0) 编辑

c++与c#数据类型对照表
摘要:https://learn.microsoft.com/zh-cn/windows/win32/winrt/base-data-types?redirectedfrom=MSDN 下表列出了Windows 运行时支持的基数据类型,并指示 C#、Visual Basic 和 C++ 中的相应类型。 数 阅读全文

posted @ 2022-12-12 15:18 空明流光 阅读(532) 评论(0) 推荐(0) 编辑

Ubuntu 20.04 安装 jdk 1.8
摘要:sudo apt-get install openjdk-8-jdk 阅读全文

posted @ 2022-12-09 16:34 空明流光 阅读(494) 评论(0) 推荐(0) 编辑

c++ md5
摘要:国内 c++ 的md5 一搜一大把,试了十几个,都有问题,转国外一篇,暂未发现问题 http://www.zedwood.com/article/cpp-md5-function main.cpp #include <iostream> #include "md5.h" using std::cou 阅读全文

posted @ 2022-12-08 21:11 空明流光 阅读(245) 评论(0) 推荐(0) 编辑

c++ 获取对象地址和从地址获取对象
摘要:#include <iostream> using namespace std; int main() { const char* a = "I am the data"; long long addr = (long long)(std::addressof(a)); cout << "addre 阅读全文

posted @ 2022-12-06 11:14 空明流光 阅读(525) 评论(0) 推荐(0) 编辑

windows 下重启网卡
摘要:获取接口名称 netsh interface show interface 禁用 接口 WLAN netsh interface set interface name="WLAN" admin=DISABLE 启用 接口 WLAN netsh interface set interface name 阅读全文

posted @ 2022-12-04 21:40 空明流光 阅读(244) 评论(0) 推荐(0) 编辑

导航