摘要: 转载 https://blog.csdn.net/xuw_xy/article/details/107442068 阅读全文
posted @ 2022-03-11 09:21 码林斋 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 在网上看到了各种方案,本解决方案是在文件中引入“stdafx.h”,仅供参考。 阅读全文
posted @ 2022-01-18 09:49 码林斋 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1、预先安装perl2、打开VS2013 “VS2013 x86 本机工具命令提示” 进入OpenSSL库目录 >perl Configure no-asm VC-WIN32 >nmake >nmake test >nmake install 64位编译 “VS2013 x64 本机工具命令提示” 阅读全文
posted @ 2021-11-23 11:19 码林斋 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 显示空格的方法:1、编辑->高级->查看空白2、Ctrl+R+W 在菜单中选择: 工具-->选项-->文本编辑器 >所有语言-->制表符 在窗口中选择,制表符大小选为4,勾选插入空格: 阅读全文
posted @ 2020-09-08 15:06 码林斋 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 头文件 #include <time.h> //秒 #include <sys/timeb.h> //毫秒 1 std::string GetRandomStr(int len) { 2 //毫秒 3 struct timeb time_seed; 4 ftime(&time_seed); 5 sr 阅读全文
posted @ 2020-05-27 13:19 码林斋 阅读(1961) 评论(0) 推荐(0) 编辑
摘要: glog 阅读全文
posted @ 2020-04-14 23:45 码林斋 阅读(1100) 评论(0) 推荐(0) 编辑
摘要: Apache Tomcat 各版本链接 http://archive.apache.org/dist/tomcat/ 阅读全文
posted @ 2020-04-09 23:07 码林斋 阅读(230) 评论(0) 推荐(0) 编辑
摘要: QSettings 读/写ini配置文件中的数组数据 阅读全文
posted @ 2020-04-06 12:41 码林斋 阅读(7149) 评论(0) 推荐(0) 编辑
摘要: 设置按钮的背景图片,背景透明度 1 QPushButton *push_button = new QPushButton; 2 push_button->setMaximumSize(32, 32); 3 push_button->setMinimumSize(32, 32); 4 QIcon bt 阅读全文
posted @ 2020-04-06 11:16 码林斋 阅读(10966) 评论(0) 推荐(1) 编辑
摘要: QMessageBox 阅读全文
posted @ 2020-04-06 10:34 码林斋 阅读(2683) 评论(0) 推荐(0) 编辑