- what is manifest file?
- Posted by r.z. on December 22nd, 2006
I did took a look at VC++ help but it is some jargon that makes me nervous
The problem is that there is some:
error PRJ0003 : Error spawning 'cmd.exe'
when I try to build and it disappears when I disable manifest embedding in
project settings. Won't my app work correctly without this manifest stuff?
- Posted by KIENI on December 22nd, 2006
Normally it will work correctly; The only difference is,
that it will be unable to use the colorful (but as I think:
unnecessary) XP skinned UI.
--------------------------------------------------
I did took a look at VC++ help but it is some jargon that makes me
nervous
The problem is that there is some:
error PRJ0003 : Error spawning 'cmd.exe'
when I try to build and it disappears when I disable manifest embedding in
project settings. Won't my app work correctly without this manifest stuff?
- Posted by r.z. on December 22nd, 2006
thanks. the app is gonna be a full screen opengl engine, so no windows UI is
necessary
"KIENI" <spam@no.please> wrote in message
news:emg2o3$h25$1@news.albasani.net...
- Posted by news@rtrussell.co.uk on December 22nd, 2006
KIENI wrote:
You may also need a manifest if the program is to run trouble-free
under Windows Vista. For example, without one Vista will 'virtualize'
parts of the file system, which can be inconvenient.
Richard.
http://www.rtrussell.co.uk/
To reply by email change 'news' to my forename.
- Posted by Bertel Brander on December 22nd, 2006
r.z. skrev:
Do you call InitCommonControls?
--
Just another homepage:
http://damb.dk
But it's mine - Bertel
- Posted by r.z. on December 23rd, 2006
no
- Posted by Bertel Brander on December 23rd, 2006
r.z. skrev:
That could be the problem.
Try to call it, from the very beginning of WinMain (or main).
You need to:
#include <commctrl.h>
and link to comctl32.lib
--
Just another homepage:
http://damb.dk
But it's mine - Bertel