摘要: 如:int a = 5;CString b;b.Format("%d",a);补充:如果a是double,或a是float的就是:b.Format("%f",a);反过来字符串转为int:a = atoi(b);如果是double,floata = atof(b); 阅读全文
posted @ 2016-08-01 12:35 HYDhyd 阅读(7082) 评论(0) 推荐(0) 编辑
摘要: 转载地址:http://blog.csdn.net/mxclxp/article/details/8196142 LINK : fatal error LNK1104: 无法打开文件“mfc71.lib”的原因一例 http://blog.csdn.net/mxclxp/article/detail 阅读全文
posted @ 2016-08-01 12:34 HYDhyd 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 今天调试程序时出现了,找不到MSCVR90.dll的错误,最好查找到了解决办法,原文链接如下: http://hi.baidu.com/wpzhao/blog/item/72dc08f77ce9be2a730eeca7.html 最近使用cppLapack,nmake运行正常,在Release模式下 阅读全文
posted @ 2016-08-01 12:32 HYDhyd 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 将数据写入到CListCtrl 向CListCtrl中写入数据,一般使用3个成员方法: CListCtrl::InsertColumn; CListCtrl::InsertItem; CListCtrl::SetItemText; InsertColumn被用于向显示列表中插入显示的列,例如: li 阅读全文
posted @ 2016-08-01 10:13 HYDhyd 阅读(3142) 评论(1) 推荐(0) 编辑