上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 128 下一页
摘要: 1、现象 在项目开发中,经常使用QText来显示解析的数据,比如从网络中获取到一个数据包,解析成中文加以显示,当时间过久或者字符串比较多的时候,就会产生一定的卡顿,所以需要限制QText的行数,或者清空内容 2、解决 使用QPlainText代替。QText可以插入HTML,可以改变字体颜色、格式等 阅读全文
posted @ 2019-04-17 16:10 朱小勇 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 1、去除空格 //QString去掉空格 QString str; str.remove(QRegExp("\\s")); 2、设置LineEdit只能输入int、double le->setValidator(new QIntValidator(le)); le->setValidator(new 阅读全文
posted @ 2019-04-17 15:56 朱小勇 阅读(714) 评论(0) 推荐(0) 编辑
摘要: 用mfc开发,使用双缓冲刷新屏幕时,可能会造成GDI的增长,当增长到一定数量【10000】时,软件会崩,可以通过 proces explorer来监测GDI,调试代码 打开proces explorer,找到需要检测的进程,双击,在performance选项卡里有GDI Handles 阅读全文
posted @ 2019-04-17 15:54 朱小勇 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 现象:mfc动态生成了很多控件,new的,退出时也delet了,但是还是出现了标题的错误 解决:在任何可以执行的地方加代码: CMFCVisualManager ::SetDefaultManager (RUNTIME_CLASS (CMFCVisualManagerWindows7 )); 阅读全文
posted @ 2019-04-01 17:13 朱小勇 阅读(605) 评论(0) 推荐(0) 编辑
摘要: 1、现象 在栈上定义CImage,加载本地图片,在界面上显示,报内存异常,访问失败 2、结论 图片过大,会是CImage产生这种问题 3、解决 把CImage定义到堆上,回收内存 new Load Draw Destory delete,置NULL ps:这种问题为什么需要程序员是找问题呢,被搞了一 阅读全文
posted @ 2019-03-27 17:24 朱小勇 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 1、作为迭代器 使用前: #include<string> #include<vector> int main() { std::vector<std::string> vs; for (std::vector<std::string>::iterator i = vs.begin(); i != 阅读全文
posted @ 2019-03-27 11:12 朱小勇 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 现象:出现warning cxxxx。。 解决:项目,属性,C/C++,高级,禁用特定警告,把xxxx输入 阅读全文
posted @ 2019-03-26 13:37 朱小勇 阅读(2235) 评论(0) 推荐(0) 编辑
摘要: //add by zhuxy 递归删除文件夹 BOOL myDeleteDirectory(CString directory_path) //删除一个文件夹下的所有内容 { BOOL ret=TRUE; CFileFind finder; CString path; path.Format(_T("%s/*.*"),directory_path); BOOL bWorki... 阅读全文
posted @ 2019-03-20 15:19 朱小勇 阅读(3625) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sinat_33718563/article/details/79241129 在VS2010中调试工程中,常常需要观察相同变量名在不同代码处的位置,VS默认情况下双击一个变量名,其它相同变量名不会高亮显示或显示不明显,如下图变量名uiBit所示,为了方便 阅读全文
posted @ 2019-03-13 14:41 朱小勇 阅读(4367) 评论(0) 推荐(0) 编辑
摘要: 当qt运行出现以下信息时 [LspTrace]ReadAccConfig returns false! [LspTrace]FindMatchingProvider: inInfo is one of the LSPs entry.[LspTrace]WSPStartup end: 0, proto 阅读全文
posted @ 2019-03-10 14:18 朱小勇 阅读(2574) 评论(0) 推荐(0) 编辑
上一页 1 ··· 74 75 76 77 78 79 80 81 82 ··· 128 下一页