windows C++ form

Hi all,
I have a problem
I've build a windows form with microsoft visual C++ and it runs perfectly on my computer. But as soon as I try it on an other computer an error message tells me that the program doesn't work and to reinstall it might be the solution.

I think I just didn't copy the right files with the .exe form.
Thanks in advance
J-F

[364 byte] By [Jeffbd] at [2007-12-16]
# 1
Hey!
Check if you have .NET installed on that machine. If you build with VS 2005 you need 2.0 beta .NET on the machine.
Regards,
Nazgob
Nazgob at 2007-9-8 > top of Msdn Tech,Visual C++,Visual C++ General...
# 2
Keep in mind that debug build require debug VC8 DLLs (IIRC the CRT is dynamically linked by default). So, assuming the .NET 2 Beta is installed on the target machine a release build or a statically linked VCR build should work.

hth,
-- b.gr

P.S.: http://www.dependencywalker.com/ is a handy little tool to resolve DLL issues :)

BjoernGraf at 2007-9-8 > top of Msdn Tech,Visual C++,Visual C++ General...
# 3
You need CRT to be deployed on another computer together with your winform applications. Check docs in CTPs or follow instructions outline on my blog, http://blogs.msdn.com/nikolad/archive/2005/03/18/398720.aspx and http://blogs.msdn.com/nikolad/articles/427101.aspx

Thanks,
Nikola
VC++

NikolaDudar at 2007-9-8 > top of Msdn Tech,Visual C++,Visual C++ General...