VS2010
文章平均质量分 85
cdjcong
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
error LNK2019: 无法解析的外部符号 "int __cdecl wsprintfWInternal
“1>正在链接... 1>CDXGraph.obj : error LNK2019: 无法解析的外部符号 "int __cdecl wsprintfWInternal(wchar_t *,wchar_t const *,...)" (?wsprintfWInternal@@YAHPA_WPB_WZZ),该符号在函数 "private: void __thiscall CDXGraph::AddTo转载 2012-11-29 13:59:25 · 3005 阅读 · 0 评论 -
error MSB3073
VC6.0 动态库或控件代码移植到VC2010一些异常问题 异常报告: 1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(183,5): error MSB3073: The command "regsvr32 /s /c "D:\VC++Prj\source code\zutai\cha转载 2012-11-29 14:34:02 · 3083 阅读 · 0 评论 -
virtual long __stdcall CBaseFilter::JoinFilterGraph 错误
今天用dshow自己带的memfile 的例子编译正常,可是自己新建立一个windows 工程死活编译不过。提示: TechVCD error LNK2001: 无法解析的外部符号 "public: virtual long __stdcall CBaseFilter::FindPin(wchar_t const *,struct IPin * *)" (?FindPin@CBaseFilt转载 2012-11-29 14:26:37 · 474 阅读 · 0 评论 -
Application .SetCompatibleTextRenderingDefault 方法
将某些控件上定义的 UseCompatibleTextRendering 属性设置为应用程序范围内的默认值。 命名空间: System.Windows.Forms 程序集: System.Windows.Forms(在 System.Windows.Forms.dll 中) 语法 VB C# C++原创 2012-12-21 15:19:06 · 7532 阅读 · 0 评论 -
wpf文件复制显示进度条效果(双线程)
先看运行效果 xaml如下: xaml代码 <window x:class="wpfthreadtest.mainwindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/20转载 2013-08-02 10:00:53 · 7063 阅读 · 0 评论 -
【Visual Studio 2010】修改注册表解决误删除某一版本sdk后的编译故障
安装了最新版的Win7 sdk(v7.1)后,觉得6.0a和7.0a的sdk挺碍眼,就都删除了。问题就来了:vs2008和vs2005可以用sdk自带的工具选择sdk的版本,但对vs2010无效。用vs2010新建的2.0、3.0、3.5版本的托管代码编译时都遇到问题: "Task could not find "sgen.exe" using the SdkToolsPath "转载 2014-04-18 12:24:16 · 4945 阅读 · 1 评论 -
C++ vector变量等导致内存泄露问题的解决方法
之前在做一个音频特征提取的批量处理程序,老是出现内存泄露问题,用Visual Leak Detector(VLD)工具做了下检测,检测出了一些问题,解决后还是会有问题。之后继续排查,因为我的代码中,大量的音频相关处理的数据都存成了vector变量,推测是不是vector变量的析构问题,上网查了些资料,现写出解决过程: 1、关于Visual Leak Detector的配置与使用 主要也原创 2016-03-09 21:26:44 · 12991 阅读 · 0 评论
分享