fatal error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC
出现如下错误:
fatal error C1189: #error :  Building MFC application with /MD[d] (CRT dll version) requires MFC
解决办法 
修改属性,MFC的使用 
fatal error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC的更多相关文章
- fatal error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC sha
		
调试程序时出现以下问题:d:\program files (x86)\microsoft visual studio 10.0\vc\atlmfc\include\afx.h(24): fatal e ...
 - VS2017编译错误:#error: Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version
		
VS2017编译错误:#error: Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll ve ...
 - #error: Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
		
转载:https://www.cnblogs.com/cvwyh/p/10570920.html 错误 在使用VS编译文件时出现了如下错误: #error: Building MFC applicat ...
 - error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
		
今天在开发过程中遇到了C1189 error.找了好久解决办法,最后自己解决了...... 方法:工程右键->属性 编辑预处理器定义: 再次运行,就解决了.
 - Building MFC application with /MD[d] (CRT dll version)requires MFC shared dll version
		
解决方法:
 - vc/atlmfc/include/afx.h(24) : fatal error C1189: #error : Building MFC application with /MD[d] (CRT
		
环境:win7,64位,vs2012 1> c:/program files/microsoft visual studio 8/vc/atlmfc/include/afx.h(24) : fa ...
 - 从“空项目”创建MFC项目遇到的问题error C1189,error MSB8031
		
在VS2013中创建了一个空项目,创建了MyApp.h, MyApp.cpp(MyApp.h使用了<afxwin.h>) build的时候报错: fatal error C1189: #e ...
 - Error C1189: #error: Please use the /MD switch for _AFXDLL builds
		
在VS 2013中编译程序时出现错误: 错误提示1: error C1189: #error : Building MFC application with /MD[d] (CRT dll versi ...
 - Error C1189: #error: Please use the /MD switch for _AFXDLL builds(转)
		
原文转自 https://www.cnblogs.com/zwh0214/p/6048360.html 在VS 2013中编译程序时出现错误: 错误提示1: error C1189: #error : ...
 
随机推荐
- npm安装使用^符号时,在0.0.1等版本下区别
			
文档地址 https://docs.npmjs.com/misc/semver Caret Ranges ^1.2.3 ^0.2.5 ^0.0.4§ Allows changes that do no ...
 - JavaScript中的回调函数(callback)
			
什么是回调函数 In computer programming, a callback is a piece of executable code that is passed as an argum ...
 - The Preliminary Contest for ICPC Asia Shanghai 2019 C. Triple
			
[传送门] FFT第三题! 其实就是要求有多少三元组满足两短边之和大于等于第三边. 考虑容斥,就是枚举最长边,另外两个数组里有多少对边之和比它小,然后就是 $n^3$ 减去这个答案. 当 $n \le ...
 - 在树莓派上配置MariaDB
			
在树莓派上配置MariaDB 前言 MariaDB是由原本开发MySQL的一些原始开发者领导,他们担心Oracle收购MySQL后会有一些隐患.MariaDB与MySQL保持这高度兼容性,并使用了一个 ...
 - 学习vue_01
			
目录 vue 框架: 框架介绍 基础格式 插值表达式: 文本指令: 事件指令: 属性指令: 小结: js 补充(面向对象): vue 框架: --构建虚拟的DOM结构,(内存内改变对象)- 操作数据的 ...
 - [LeetCode] 83. Remove Duplicates from Sorted List 移除有序链表中的重复项
			
Given a sorted linked list, delete all duplicates such that each element appear only once. Example 1 ...
 - ORA-01722 invalid number 一个比较隐蔽的可能错误原因
			
在Oracle数据库中,数据类型为char或者varchar的字段,里面存储的数据,可以是纯数字串,比如: 3433,也可以是带有英文字符的字符串,比如: 3433a. Oracle对于纯数字串, ...
 - SpringBoot第十二篇:整合jsp
			
作者:追梦1819 原文:https://www.cnblogs.com/yanfei1819/p/10953600.html 版权声明:本文为博主原创文章,转载请附上博文链接! 引言 Sprin ...
 - Windows 配置Apache+CGI
			
首先还是先在官网下载Apache,版本为Apache 2.4.26 x64,下载64位的地址为:http://www.apachehaus.com/cgi-bin/download.plx 下载完成后 ...
 - LeetCode 118:杨辉三角 II Pascal's Triangle II
			
公众号:爱写bug(ID:icodebugs) 作者:爱写bug 给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行. Given a non-negative index k whe ...