Hi, im just installing and testing the new visual C++ express, but when i try to run my aplication(debbuging mode), i got this error "the application can start because msvcp80d.dll wasnt found" (i have winXP in spanish language). If i try to run it in release it works.
I have WinXP Home Edition SP2 fresh install up to date (have all patches) and visual estudio .net 2003 installed.
How can i fix this .

msvcp80d.dll debug problem
GulfCoastFSBO
What does the manifest for your application contain
Thanks, Ayman Shoukry VC++ Teamrwiegel
//main.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hola, Bienvenido a esta aplicacion" << endl;
return 0;
}
well i dont know where can i see what you are asking for, i follow the video.
My proyect only have one Sorce file, the main.cpp, no more.
The Goblin
and copy it to my program directory and to c:\windows\system32
Dejjan
Take a look at http://msdn2.microsoft.com/en-us/library/ms235229.aspx which describes more about manifests. If you are using the same machine (the same you built the application on) then it should work. I just hope that nothing went wrong during installation or if the linker is not generating the manifest for your application.
Also, don't copy the file to any other place other than the SxS directory.
Thanks, Ayman Shoukry VC++ TeamPairair
What is inside you manifest file
Thanks, Ayman Shoukry VC++ TeamPaul Hill alphacomp
Can you find the file msvcp80d.dll any where on your machine
Thanks, Ayman Shoukry VC++ TeamDentonChris
I decide to errase everything a start again and it works :S, i dont know what i do, it just work, generate the manifes file etc...
Thanx for the help.
Lesley-Ann Vaughan