
异常与错误
smartDMer
研究方向:音视频技术
展开
-
VS2005中编译出错:Error 1 error C3872: '0x3000': this character is not allowed in an identifier
VS2005中编译出错:Error 1 error C3872: '0x3000': this character is not allowed in an identifier 源代码没有问题, 是一些网页上的非正常格式的空格在做怪,应该是字符码、格式的问题,它与VS中的字符不兼容,所以VS编译程序时无法识别此类字符串,即使注释了,也还会报错。原创 2010-06-01 13:55:00 · 1850 阅读 · 1 评论 -
fatal error LNK1104: cannot open file 'MSCOREE.lib'
新建CLR项目,直接运行,提示错误:fatal error LNK1104: cannot open file 'MSCOREE.lib'MSCOREE.lib was moved for Visual Studio 2008. It now resides here:C:\Program Files\Microsoft SDKs\Windows\v6.0A\LibC:\Prog原创 2012-02-14 16:29:29 · 6606 阅读 · 0 评论 -
apache2不能启动的解决办法(提示could not bind to address 0.0.0.0:80)
安装apache 2.22 出现的问题:“(OS 10048)通常每个套接字地址 (协议/网络地址/端口) 只允许使用一次: make_sock: could not bind to address 0.0.0.0:80...”一般是IIS或其他程序占用了80端口引起的,引起的原因,可以参考:http://wiki.apache.org/httpd/CouldNotBind原创 2012-02-28 13:30:50 · 44491 阅读 · 1 评论 -
left of '->GetStatus' must point to class/struct/union/generic type
LRESULT CALLBACK PlayWindow::PlayWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)//这是一个static成员函数{ switch (uMsg) { case WM_LBUTTONDOWN: if(m_pIPlayCtrl->GetStatus() == 3)原创 2012-04-28 11:47:58 · 5153 阅读 · 0 评论 -
VS2008在win7下总是提示“Microsoft Incremental Linker已停止工作”
方法一:修改ParameterInfo.xmlVS2008SP1无法安装可能是因为你的VS2008是中文版,英文版不存在该问题。安装错误是在安装.net3.5SP1的中文语言包的时候,改安装脚本ParameterInfo.xml绕过语言包的安装,删除下列代码:http://go.microsoft.com/fwlink/?LinkId=119353&clcid=0x409 " Do转载 2012-06-05 13:12:51 · 7275 阅读 · 0 评论