浅议Delphi中的Windows API调用http://tech.163.com/school • 2005-08-15 10:57:41 • 来源: 天极网为了能在Windows下快速开发应用程序,Delphi对Windows的控件都进行了很好的封装,这样,我们就可以直接使用Delphi的控件 Read More
posted @ 2017-02-03 07:10 findumars Views(346) Comments(0) Diggs(0)
文章出处:DIY部落(http://www.diybl.com/course/3_program/c/c_js/20090303/157373_3.html) POINT 1:QThread类的实例与普通类的实例没什么不同,只是运行着的run()函数会不同 例1: class MThread :pu Read More
posted @ 2017-02-03 07:09 findumars Views(935) Comments(0) Diggs(0)
原文 http://www.cppblog.com/lauer3912/archive/2011/04/10/143870.html 一、基本分类:qDebug : 调试信息提示qWarning: 一般的警告提示qCritical: 严重错误提示qFatal: 致命错误提示二、如何截获这些信息Qt提 Read More
posted @ 2017-02-03 07:07 findumars Views(1974) Comments(0) Diggs(0)
unbuntu下卸载QT方法一:you can remove it like this, those developers should add this somewhere ! like next to the download textlinuxmint ~ # cd /optlinuxmint Read More
posted @ 2017-02-03 07:06 findumars Views(1939) Comments(0) Diggs(1)
问题:生成的dll文件QT无法静态/隐式调用 分析:调用的lib库可能是msvc编译的,而我用Qt调用,Qt默认编译器是minGW,两种编译器生成的函数名不一样,所以调用的时候你要用哪个函数,编译结果肯定显示这个函数未定义! 解决1:用VS2008生成DLL文件时,采用__declspec方式导出函 Read More
posted @ 2017-02-03 07:04 findumars Views(1804) Comments(0) Diggs(0)