上一页 1 2 3 4 5 6 ··· 75 下一页

2023年5月16日

使用notepad++查看DLL位数

摘要: 简便方法: 直接用记事本或者notepad++打开exe文件(dll文件),会有很多乱码,不要头疼,接下来只需要在第二段中找到PE两个字母,在其后的不远出会出现d? 或者L。若是d,则证明该程序是64位;若是L,则证明是32位。 翻译 搜索 复制 阅读全文

posted @ 2023-05-16 22:15 疯狂delphi 阅读(124) 评论(0) 推荐(0) 编辑

2023年4月11日

Delphi-UTF8转GBK

摘要: /////////////////////////////////////////////function TXml.getValue(str: string): string;//传入的UTF8字符串var s: string;begin if FBase64 then begin s := TN 阅读全文

posted @ 2023-04-11 23:52 疯狂delphi 阅读(367) 评论(0) 推荐(0) 编辑

2023年4月2日

Delphi-UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式)

摘要: 相关资料: https://www.cnblogs.com/guorongtao/p/14729102.html Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式) 实例代码: 1、UniCode转汉字 function UnicodeToChinese(sStr: 阅读全文

posted @ 2023-04-02 14:17 疯狂delphi 阅读(0) 评论(0) 推荐(0) 编辑

2023年2月11日

Qt-Qt之监听窗口改变事件(最小化、最大化、还原)

摘要: 相关资料: https://blog.csdn.net/weixin_43165135/article/details/125527497 实例代码: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 阅读全文

posted @ 2023-02-11 15:35 疯狂delphi 阅读(587) 评论(0) 推荐(0) 编辑

2023年2月9日

Qt-Qt实现高斯模糊效果

摘要: 相关资料: https://qa.1r1g.com/sf/ask/1044059061/ 实例代码: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # 阅读全文

posted @ 2023-02-09 21:06 疯狂delphi 阅读(470) 评论(0) 推荐(1) 编辑

2023年2月8日

Qt-Qt无边框窗口实现拖动和改变大小(nativeEvent利用系统消息处理)

摘要: 相关资料: https://blog.csdn.net/qq_22642239/article/details/120565343 .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG 阅读全文

posted @ 2023-02-08 19:10 疯狂delphi 阅读(164) 评论(0) 推荐(0) 编辑

2023年2月7日

wn32拦截ExtTextOut屏幕取词

摘要: wn32拦截ExtTextOut屏幕取词_jfu22的博客-CSDN博客_exttextout https://blog.csdn.net/jfu22/article/details/24581653 阅读全文

posted @ 2023-02-07 20:49 疯狂delphi 阅读(55) 评论(0) 推荐(0) 编辑

2023年2月4日

Qt-Qt之剪切板、热键应用(QClipboard、RegisterHotKey)

摘要: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn 阅读全文

posted @ 2023-02-04 13:42 疯狂delphi 阅读(56) 评论(0) 推荐(0) 编辑

2023年1月24日

Qt-Qt之雷达扫描效果-No25-QtRadar

摘要: 相关资料: https://blog.csdn.net/weixin_43865793/article/details/127684665 原作者 实例代码: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widg 阅读全文

posted @ 2023-01-24 13:44 疯狂delphi 阅读(151) 评论(0) 推荐(0) 编辑

2023年1月10日

Qt-Qt之实现框选地图功能(返回选中区域经纬度)

摘要: .pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn 阅读全文

posted @ 2023-01-10 18:55 疯狂delphi 阅读(107) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 75 下一页

导航