摘要: //SHGetFolderPathstring cFilePath;SHGetFolderPath(NULL ,CSIDL_PERSONAL ,0 ,0 ,cFilePath); 以下为函数原型:HRESULTSHGetFolderPath(HWNDhwndOwner,intnFolder,HAND... 阅读全文
posted @ 2015-12-23 18:42 sev 阅读(3499) 评论(0) 推荐(0) 编辑
摘要: 先看MSDN的解释:SendMessage:TheSendMessagefunction sends the specified message to a window or windows. It calls thewindow procedurefor the specified window ... 阅读全文
posted @ 2015-12-23 18:18 sev 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 今天遇到unity3d报Internal compiler error. See the console log for more information.错误信息。但根据提示在对应的地方却找不到相应的错误,后来仔细查看代码后发现是一处类型强制转换引起的,改正后就再没报错,,,有点莫名其妙。 阅读全文
posted @ 2015-12-23 18:16 sev 阅读(814) 评论(0) 推荐(0) 编辑
摘要: 自己创建了一个对话框,编译时在生成的对话框类中出现'CDialogEx' : base class undefined。。错误解决方案:#include // 功能区和控件条的 MFC 支持 阅读全文
posted @ 2015-12-23 18:15 sev 阅读(2389) 评论(0) 推荐(0) 编辑
摘要: 终极解决方法:在Properties/Linker/General中将Force File Output改为Multiply Defined Symbol Only (/FORCE:MULTIPLE)。相关链接:http://blog.sina.com.cn/s/blog_7cb1cf700100v... 阅读全文
posted @ 2015-12-23 18:13 sev 阅读(1466) 评论(0) 推荐(0) 编辑
摘要: 用adb连接android真机时出现以下错误信息:在网上看了些解决办法,总结一下。// 出现这种提示一般是adb被其他进程占用了,把那个进程找到并关闭就可以了。1、在cmd窗口里输入:adb nodaemon server提示无法绑定端口5037,关于5037参考:http://blog.csdn.... 阅读全文
posted @ 2015-12-23 17:35 sev 阅读(267) 评论(0) 推荐(0) 编辑