English 中文(简体)
MSVCP100D.dll是什么? [复制]
原标题:What is MSVCP100D.dll? [duplicate]
This question already has answers here:
Closed 12 years ago.

Possible Duplicate:
Application has failed to start because MSVCP100D.dll was not found, reinstalling app may help…

我利用Microsoft视觉C++ 2010年快版<>/strong>汇编了我的节目,并试图将其操作在另一个没有同一编辑的机器上。

由于我重复点击,有电文说MSVCP100D.dll文档被发现失踪。

  • What sort of file is this?
  • Why did the application fail to start?
  • What can I do to start the application there?
最佳回答

这是C++的运行时间图书馆。 You ve使用了“ de”版本,该版本在用户计算机中发现了 t。 • 以释放方式制定你的方案。 这将增加对MSVCP100.dll的依赖性,而这很可能存在。

In any case, you must make sure that the dll will be present in user s machine. You can do that by creating an installer or by prompting the user to install the Microsoft Visual C++ 2010 Redistributable Package.

In summary:

  • Compile your code in release mode
  • Create an installer or use another way to copy the needed dlls to user s machine
问题回答

What about statically linking your program instead? I have done this in order to avoid this hassle (of either creating an installer, or asking a user to install another package and having to point/handhod them in that direction)

我猜测,你必须下载和安装从 >here 安装必要的操作时间环境。

http://strong>DL载有额外职能,在你管理该方案时,这些职能相互联系。 如果没有DL,你就会收到你正在经历的错误信息。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?