Hi Havatcha!
> I have recently ported a project from VS .Net to VS 2005 and when I
> build/run it I get a run-time error "R6034".
[quoted text clipped - 7 lines]
> Any suggestions on what settings I need to change to generate my
> manifest correctly?
Normally the pragma-manifest-statement is automatically embedded, if you
include one of the CRT files!
Just insert an
#include <stdio.h>
and be sure you are using the DLL version of the CRT in your project
setting!
Then the CRT-manifest will be automaticalle generated.

Signature
Greetings
Jochen
My blog about Win32 and .NET
http://blog.kalmbachnet.de/
Havatcha - 01 Nov 2007 16:17 GMT
> Hi Havatcha!
>
[quoted text clipped - 19 lines]
> setting!
> Then the CRT-manifest will be automaticalle generated.
Thanks for the reply, I checked the Runtime library option in
Configuration Properties -> C/C++ -> Code Generation -> Runtime Library
and set it to "Multi-threaded DLL" which did the trick!