会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
远方是什么样子
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
81
82
83
84
85
86
87
88
89
90
下一页
2021年5月
Qt添加窗口边框阴影
该文被密码保护。
阅读全文
posted @ 2021-05-06 16:26 远方是什么样子
阅读(1329)
评论(0)
推荐(0)
编辑
解决curl请求字段中带中文出错的问题
摘要: 可以使用curl_escape方法解决,官方文档: http://curl.haxx.se/libcurl/c/curl_escape.html char* escape_control = curl_escape(describe.c_str(), describe.size()); //std:
阅读全文
posted @ 2021-05-06 15:03 远方是什么样子
阅读(879)
评论(0)
推荐(0)
编辑
2021年4月
字体下载
摘要: https://fontmeme.com/ziti/poppins-font/
阅读全文
posted @ 2021-04-30 10:04 远方是什么样子
阅读(37)
评论(0)
推荐(0)
编辑
Qt在windows与Mac OS中获取执行程序版本号
摘要: 1 windows中获取执行文件exe的版本号 QString GetFileVertion(QString aFullName) { QString vRetVersion; string vFullName = QStringToString(aFullName); char vVersion[
阅读全文
posted @ 2021-04-29 15:51 远方是什么样子
阅读(293)
评论(0)
推荐(0)
编辑
VS2019给Qt添加模块
摘要:
阅读全文
posted @ 2021-04-29 15:46 远方是什么样子
阅读(384)
评论(0)
推荐(1)
编辑
QProcess启动不了外部程序的问题
摘要: QProcess* process = new QProcess(this); process->start("E:/bin/Release/temp/test.exe"); //无法启动 QString path = "E:/bin/Release/temp/test.exe"; process-
阅读全文
posted @ 2021-04-28 17:25 远方是什么样子
阅读(2769)
评论(0)
推荐(0)
编辑
(Qt5Core.dll)处有未经处理的异常: 请求了严重的程序退出。
摘要: 程序退出时还有线程在运行
阅读全文
posted @ 2021-04-28 12:26 远方是什么样子
阅读(1936)
评论(0)
推荐(0)
编辑
QLabel
摘要: m_pContentLabel->setWordWrap(true); //设置QLabel文本自动换行
阅读全文
posted @ 2021-04-27 12:19 远方是什么样子
阅读(204)
评论(0)
推荐(0)
编辑
解决接收命令行参数的数据中丢失双引号的问题
摘要: 传参方式:1. ::ShellExecuteA(NULL, "open", strPath.c_str(), strCmd.c_str(), NULL, SW_SHOW);2. QProcess::startDetached(strPath, QStringList(strCmd));接收方式://
阅读全文
posted @ 2021-04-23 15:13 远方是什么样子
阅读(1000)
评论(0)
推荐(0)
编辑
QFile保留指定位置的数据
摘要: QFile file(path); bool ok = file.open(QIODevice::ReadOnly); if (ok){ int off = 10; file.seek(file.size() - off); //将当前读取文件指针移动到指定位置 QString str = QStr
阅读全文
posted @ 2021-04-22 15:52 远方是什么样子
阅读(410)
评论(0)
推荐(0)
编辑
上一页
1
···
81
82
83
84
85
86
87
88
89
90
下一页
公告