编译有错误!!!不明白是什么意思.

问题描述

errorC2665:'AfxMessageBox':noneofthe2overloadscouldconvertalltheargumenttypesd:programfilesmicrosoftvisualstudio8vcatlmfcincludeafxwin.h(5025):couldbe'intAfxMessageBox(LPCTSTR,UINT,UINT)'

解决方案

解决方案二:
错误的那一行代码也请贴出来。
解决方案三:
应该是那一行代码写错了!贴出来看看

时间: 2024-09-20 05:09:01

编译有错误!!!不明白是什么意思.的相关文章

wp8-开发WP8.1应用时,引用using Newtonsoft.Json.Linq;,编译出现错误。

问题描述 开发WP8.1应用时,引用using Newtonsoft.Json.Linq;,编译出现错误. 在 System.dll模块中找不到类型System.ComponentModel.PropertyDescriptor. 解决方案 windows phone的.net不支持System.ComponentModel.PropertyDescriptor换别的库解析json 解决方案二: 试试 JavaScriptSerializer:在System.Web.Extensions.dll

ihtmlinputelement-加了mshtml.h头文件,编译有错误:IHTMLInputElement 没有定义

问题描述 加了mshtml.h头文件,编译有错误:IHTMLInputElement 没有定义 我做了一个有关网页的工程,在所在类加了#include "mshtml.h",其中.cpp代码中有:IHTMLInputElement *input;----程序编译的时候则有error C2065: 'IHTMLInputElement' : undeclared identifier : error C2065: 'input' : undeclared identifier 请高人指点

path-ubuntu编译./configure错误

问题描述 ubuntu编译./configure错误 configure: error: Library requirements (libgnome-2.0 >= 2.0.0 libgnomeui-2.0 >= 2.0.0 gtk+-2.0 >= 2.4.0 gnome-vfs-2.0 >= 2.6.0 libglade-2.0 >= 2.3.6) not met; consider adjusting the PKG_CONFIG_PATH environment var

using-C++编译没错误,运行停止工作,菜鸟求指点

问题描述 C++编译没错误,运行停止工作,菜鸟求指点 #include #include using namespace std; int main() { string ch = ""; char*p=&ch[0]; cout <<"input cipher code:"; gets(p); cout <<"cipher code:"<<ch<<endl; int j=0; for(j=0

虚拟机-OpenJDK make 编译出现错误

问题描述 OpenJDK make 编译出现错误 本人刚刚开始学习Java虚拟机看的是<深入理解Java虚拟机>一书,但刚刚一开始就遇到了困难,在编译OpenJDK时,make sanity通过编译,但是make all失败了,错误如下: build-bootstrap-javac: [javac] Compiling 111 source files to /Users/xiaoliufu/Develop/JVM/jdkBuild/openjdk-7u40/build-fastdebug/l

c语言 链表 输入问题,编译没错误, 运行 错误

问题描述 c语言 链表 输入问题,编译没错误, 运行 错误 #include #define M 20 int f(char a[]) { int i ; i=0; while (a[i]='n') i++; i--; while (i>0&& a[i]==' '||a[i]=='t') i--; if(i>0) { i++; a[i]='n'; i++; a[i]=''; } return 1; } int getline (char s[],int lim ) { int

汇编-下面一段代码的错误不明白,子程序的保护现场和恢复现场要怎么写?在哪写?

问题描述 下面一段代码的错误不明白,子程序的保护现场和恢复现场要怎么写?在哪写? DATAS SEGMENT letter db 0 digit db 0 other db 0 str db 80,?,80 dup(?) str2 db 'letter:$' str3 db 'digit:$' str4 db 'other:$' DATAS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV

关于java问题-编译中错误说第一行需要标示符是什么意思

问题描述 编译中错误说第一行需要标示符是什么意思 package dataStructure.Linear.*; import dataStructure.LinearList.Node; //导入指定包中的类或接口 import dataStructure.LinearList.SeqStack; //导入指定包中的类或接口 import dataStructure.LinearList.LinkedStack; //导入指定包中的类或接口 public class Expression {

求解答-编译没有错误,随便输入10个数之后,为什么“输入元素数是:”后面的就不执行了呢

问题描述 编译没有错误,随便输入10个数之后,为什么"输入元素数是:"后面的就不执行了呢 { Console.WriteLine("请输入数组中的10个元素数:"); int[] a=new int[10]; for (int i = 0; i < a.Length; i++) { a[i] = int.Parse(Console.ReadLine()); } Console.WriteLine("输入的元素数是:"); for (int