473,404 Members | 2,179 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

Native win32 apps still require .NET runtime?

I understand that VS.NET is supposed to compile native Win32 apps that
do not require the .Net runtime. If that's the case then there is
something else from the VS200x package that is required.

MSVCR80.DLL and MSVCR80D.DLL are present and accounted for in
Windows\System32. This is something else.

Message says that the application configuration is incorrect. I just
compiled a simple "Hello.cpp" app that exhibits the same behavior so
this should be easy to duplicate.

What's missing?
Nov 23 '05 #1
24 2816
Native Win32 Apps do not require the .NET Framework. If you're using MFC, did
you set the project to use MFC in a static library? Maybe you should post the
exact error message.

Cheers,
Mark

"Dave" wrote:
I understand that VS.NET is supposed to compile native Win32 apps that
do not require the .Net runtime. If that's the case then there is
something else from the VS200x package that is required.

MSVCR80.DLL and MSVCR80D.DLL are present and accounted for in
Windows\System32. This is something else.

Message says that the application configuration is incorrect. I just
compiled a simple "Hello.cpp" app that exhibits the same behavior so
this should be easy to duplicate.

What's missing?

Nov 23 '05 #2
>"Dave" wrote:
I understand that VS.NET is supposed to compile native Win32 apps that
do not require the .Net runtime. If that's the case then there is
something else from the VS200x package that is required.

MSVCR80.DLL and MSVCR80D.DLL are present and accounted for in
Windows\System32. This is something else.

On Tue, 22 Nov 2005 06:50:18 -0800, "Mark"
<Ma**@discussions.microsoft.com> wrote:
Native Win32 Apps do not require the .NET Framework. If you're using MFC, did
you set the project to use MFC in a static library? Maybe you should post the
exact error message.


The error message is: "This application has failed to start because
the application configuration is incorrect. Reinstalling the
application may fix this problem."

I've been able to reproduce this on a couple machines now, and I've
confirmed that others have seen the same error message (below) in
similar cases. Still no real clues to the cause.

No MFC. As mentioned, I've seen this with a plain console 'hello'
program. MSVCR80 dlls are in Windows\System32.

This does not occur on systems where VS2005 is installed.
I don't remember seeing this with VS2003.

If the error message is to be taken literally, then there's something
that needs to be configured aside from simple copying of DLLs. ????
I didn't think that was the case with straight unmanaged apps.
Dec 5 '05 #3

Dave wrote:
"Dave" wrote:
I understand that VS.NET is supposed to compile native Win32 apps that
do not require the .Net runtime. If that's the case then there is
something else from the VS200x package that is required.

MSVCR80.DLL and MSVCR80D.DLL are present and accounted for in
Windows\System32. This is something else.


On Tue, 22 Nov 2005 06:50:18 -0800, "Mark"
<Ma**@discussions.microsoft.com> wrote:
Native Win32 Apps do not require the .NET Framework. If you're using MFC, did
you set the project to use MFC in a static library? Maybe you should post the
exact error message.


The error message is: "This application has failed to start because
the application configuration is incorrect. Reinstalling the
application may fix this problem."

I've been able to reproduce this on a couple machines now, and I've
confirmed that others have seen the same error message (below) in
similar cases. Still no real clues to the cause.

No MFC. As mentioned, I've seen this with a plain console 'hello'
program. MSVCR80 dlls are in Windows\System32.

This does not occur on systems where VS2005 is installed.
I don't remember seeing this with VS2003.

If the error message is to be taken literally, then there's something
that needs to be configured aside from simple copying of DLLs. ????
I didn't think that was the case with straight unmanaged apps.


First use dependency walker on the target machine to check wether any
DLL you may not be aware of is missing.

Arnaud
MVP - VC

Dec 5 '05 #4
On 5 Dec 2005 02:18:23 -0800, ad******@club-internet.fr wrote:

Dave wrote:
The error message is: "This application has failed to start because
the application configuration is incorrect. Reinstalling the
application may fix this problem."

I've been able to reproduce this on a couple machines now, and I've
confirmed that others have seen the same error message (below) in
similar cases. Still no real clues to the cause.

No MFC. As mentioned, I've seen this with a plain console 'hello'
program. MSVCR80 dlls are in Windows\System32.

This does not occur on systems where VS2005 is installed.
I don't remember seeing this with VS2003.

If the error message is to be taken literally, then there's something
that needs to be configured aside from simple copying of DLLs. ????
I didn't think that was the case with straight unmanaged apps.


First use dependency walker on the target machine to check wether any
DLL you may not be aware of is missing.


That's one of the first things that I tried, Arnaud. Especially in
the case of the "Hello World" release build, that was not complex--it
just uses MSVCR80.dll (and of course Kernel32 and NTDLL).

In other words, printf("Hello"); compiled w VS2005 will not run on a
machine unless VS2005 has been installed.

Again, the error message is: "This application has failed to start
because the application configuration is incorrect. Reinstalling the
application may fix this problem."

Compiling the same code under VS2003 exhibits no problems when running
on a plain-vanilla test machine with no compilers installed..

Any other ideas?

Dec 5 '05 #5

"Dave" <Da**@noemail.com> wrote in message
news:te********************************@4ax.com...
On 5 Dec 2005 02:18:23 -0800, ad******@club-internet.fr wrote:

Dave wrote:
The error message is: "This application has failed to start because
the application configuration is incorrect. Reinstalling the
application may fix this problem."

I've been able to reproduce this on a couple machines now, and I've
confirmed that others have seen the same error message (below) in
similar cases. Still no real clues to the cause.

No MFC. As mentioned, I've seen this with a plain console 'hello'
program. MSVCR80 dlls are in Windows\System32.

This does not occur on systems where VS2005 is installed.
I don't remember seeing this with VS2003.

If the error message is to be taken literally, then there's something
that needs to be configured aside from simple copying of DLLs. ????
I didn't think that was the case with straight unmanaged apps.


First use dependency walker on the target machine to check wether any
DLL you may not be aware of is missing.


That's one of the first things that I tried, Arnaud. Especially in
the case of the "Hello World" release build, that was not complex--it
just uses MSVCR80.dll (and of course Kernel32 and NTDLL).

In other words, printf("Hello"); compiled w VS2005 will not run on a
machine unless VS2005 has been installed.

Again, the error message is: "This application has failed to start
because the application configuration is incorrect. Reinstalling the
application may fix this problem."

Compiling the same code under VS2003 exhibits no problems when running
on a plain-vanilla test machine with no compilers installed..

Any other ideas?


You'll have to add the .manifest file to your distributon or you need to
embed the manifest to the .exe file (this is normaly done when you build
from within the IDE).
Note that on XP and higher, MSVCR80.dll (and other C++ runtime dll's) should
be installed in the SxS folder (Side by Side assembly folder).
Please search MSDN for "manifest" and "side by side assemby" for more
details on shared runtime assemblies.

Willy.
Dec 5 '05 #6
On Mon, 5 Dec 2005 14:08:50 +0100, "Willy Denoyette [MVP]"
<wi*************@telenet.be> wrote:
"Dave" <Da**@noemail.com> wrote in message
... printf("Hello"); compiled w VS2005 will not run on a
machine unless VS2005 has been installed.

Again, the error message is: "This application has failed to start
because the application configuration is incorrect. Reinstalling the
application may fix this problem."
You'll have to add the .manifest file to your distributon or you need to
embed the manifest to the .exe file (this is normaly done when you build
from within the IDE).
Note that on XP and higher, MSVCR80.dll (and other C++ runtime dll's) should
be installed in the SxS folder (Side by Side assembly folder).
Please search MSDN for "manifest" and "side by side assemby" for more
details on shared runtime assemblies.


Thanks for the followup, Willie. I had hoped that this was a simple
global config option, but it appears not.

If I'm understanding this, the "Hello World 2005" tutorial just grew
from one page to about 4 chapters (versioning schemes, manifests,
deployment strategies, etc).

This looks like a horrible blunder by the Microsoft team. MS needs to
devise an intelligent tool that will make deployment easy. Especially
since many writing Win32 code under VS2005 are just trying to port
their old apps. Given the likelihood that users will encounter this
problem, I'd also think that MS's error messages could be better.

I've looked through the code at Nikola Dudar's blog:
http://blogs.msdn.com/nikolad/archiv...18/398720.aspx
Tried the recommendation, but just traded in for a different set of
error messages.

Does anyone have a coherent list of changes (to manifests, DLLs,
whatever) that will make VS2005 apps work?

Dec 6 '05 #7

"Dave" <Da**@noemail.com> wrote in message
news:41********************************@4ax.com...
On Mon, 5 Dec 2005 14:08:50 +0100, "Willy Denoyette [MVP]" <SNIP>
If I'm understanding this, the "Hello World 2005" tutorial just grew
from one page to about 4 chapters (versioning schemes, manifests,
deployment strategies, etc).
You must be doing something wrong. The whole idea of .NET, etc., is that
everything is easy to deploy and stuff just "works". DLL hell is now a
thing of the past.

This looks like a horrible blunder by the Microsoft team. MS needs to
devise an intelligent tool that will make deployment easy. Especially
since many writing Win32 code under VS2005 are just trying to port
their old apps. Given the likelihood that users will encounter this
problem, I'd also think that MS's error messages could be better.


It's actually brilliant. You just have to take a different point of view of
Microsoft's strategy and what they're trying to accomplish. Time will show
this.

-Michael Viking.
Dec 7 '05 #8
On Tue, 6 Dec 2005 15:50:40 -0800, "Michael Viking"
<Th*******@sweden.se> wrote:

"Dave" <Da**@noemail.com> wrote in message
news:41********************************@4ax.com.. .
On Mon, 5 Dec 2005 14:08:50 +0100, "Willy Denoyette [MVP]"<SNIP>

If I'm understanding this, the "Hello World 2005" tutorial just grew
from one page to about 4 chapters (versioning schemes, manifests,
deployment strategies, etc).


You must be doing something wrong.


Ha! I'm wondering if I misspelled "Hello" or if it was "World"
The whole idea of .NET, etc., is that everything is easy to deploy and
stuff just "works". DLL hell is now a thing of the past.


It Just Works (IJW) is a nice catch-phrase, but it this case, IJDW.

It occurs to me that you may not have actually tried this. Build an
unmanaged C++ "Hello World" app with VS2005, transfer it to a
machine that doesn't have VS2005. Then see what you have to
do to get it to run.

Think about it...if the DLLs are named the same (MSVC80x for both
beta and release of VS2005) then how is the EXE file going to find
the right one? It has to point at the correct DLL via manifest. When
you transfer your program to the other machine, where's are the
correct DLLs?

I'd still love to hear from anyone who has a coherent method for
solving this.
Dec 7 '05 #9
Dave wrote:

[SNIP]

Think about it...if the DLLs are named the same (MSVC80x for both
beta and release of VS2005) then how is the EXE file going to find
the right one? It has to point at the correct DLL via manifest. When
you transfer your program to the other machine, where's are the
correct DLLs?

I'd still love to hear from anyone who has a coherent method for
solving this.


Dave:

I do. It's called static linking.

David Wilkinson
Dec 7 '05 #10
Dave, see below:

"Dave" <Da**@NoEmail.com> wrote in message
news:4k********************************@4ax.com...
On Tue, 6 Dec 2005 15:50:40 -0800, "Michael Viking"
<Th*******@sweden.se> wrote:

"Dave" <Da**@noemail.com> wrote in message
news:41********************************@4ax.com.. .
On Mon, 5 Dec 2005 14:08:50 +0100, "Willy Denoyette [MVP]"<SNIP>

If I'm understanding this, the "Hello World 2005" tutorial just grew
from one page to about 4 chapters (versioning schemes, manifests,
deployment strategies, etc).


You must be doing something wrong.


<sarcasm>

Ha! I'm wondering if I misspelled "Hello" or if it was "World"
The whole idea of .NET, etc., is that everything is easy to deploy and
stuff just "works". DLL hell is now a thing of the past.

<sarcasm>

It Just Works (IJW) is a nice catch-phrase, but it this case, IJDW.

It occurs to me that you may not have actually tried this. Build an
unmanaged C++ "Hello World" app with VS2005, transfer it to a
machine that doesn't have VS2005. Then see what you have to
do to get it to run.


<SNIP>

I've been being sarcastic. You're right I've never tried it. Those are
just phrases I remember the billion dollar marketing machine trying to force
feed me. It only took us about 2 weeks of playing with the first .NET beta
years ago to stick with VC 6 for our needs. Still using it, still not
having any problems, still haven't wasted any time learning obsolete syntax.

-Michael Viking
Dec 8 '05 #11
On Wed, 7 Dec 2005 18:18:04 -0800, "Michael Viking" <Th*******@sweden.se>
wrote:
Dave, see below:

"Dave" <Da**@NoEmail.com> wrote in message
>> If I'm understanding this, the "Hello World 2005" tutorial just grew
>> from one page to about 4 chapters (versioning schemes, manifests,
>> deployment strategies, etc).
>
>You must be doing something wrong.
<sarcasm>

Ha! I'm wondering if I misspelled "Hello" or if it was "World"
> The whole idea of .NET, etc., is that everything is easy to deploy and
> stuff just "works". DLL hell is now a thing of the past.

I've been being sarcastic. You're right I've never tried it. Those are
just phrases I remember the billion dollar marketing machine trying to force
feed me.


Ah, sorry. I didn't expect that in a dotnet group. I love the new
development environment and see logic in trying to maintain DLL
versioning, etc. But not if it means that apps won't work at all.

In searching for info, I've even seen mention of a commercial app that
has run into a snag with a distributed program due to this! "DLL Hell" is
back with a vengeance. Copying folder trees and manifests from WinSxS
does not fix it. Nor does the recommended fix I've seen on MS sites (copy
DLLs and manifest into local folder and rename the manifest).

You are correct that a lot of the MS market-speak gets repeated without
being questioned. I've seen otherwise knowledgable people in this group
say that unmanaged apps can be generated in VS2005 and will run without a
hitch. Inquiries about keeping VC6 loaded are often answered by "No
need."

The problem seems easy to duplicate. I've talked to others who have
encountered it and dropped back to VC6 as a result. After seeing this
turn up on several machines, I have to conclude that the experts simply
haven't tried it and are, as you said, repeating MS market-speak. I wish
it weren't so.
Dec 8 '05 #12
On Wed, 07 Dec 2005 09:01:46 -0500, David Wilkinson
<no******@effisols.com> wrote:
Dave wrote:

[SNIP]

Think about it...if the DLLs are named the same (MSVC80x for both
beta and release of VS2005) then how is the EXE file going to find
the right one? It has to point at the correct DLL via manifest. When
you transfer your program to the other machine, where's are the
correct DLLs?

I'd still love to hear from anyone who has a coherent method for
solving this.
Dave:

I do. It's called static linking.

David Wilkinson


You're right, that works. HelloWorld is 400K+ but it runs.

I'm very curious now, has no one tried running unmanaged apps on
non-development machines? That seems a stretch. But I've heard about
this from several knowledgable programmers now.

Even copying the WinSxS folders and manifests does not fix the dynamic
link problem, so bottom line: VS2005 does NOT generate reliable standalone
native apps.

If anyone knows how to fix the manifest, please speak up. The MS fix at
http://blogs.msdn.com/nikolad/archiv...18/398720.aspx does not
work.


Dec 8 '05 #13
Dave wrote:
On Wed, 07 Dec 2005 09:01:46 -0500, David Wilkinson
<no******@effisols.com> wrote:

Dave wrote:

[SNIP]
Think about it...if the DLLs are named the same (MSVC80x for both
beta and release of VS2005) then how is the EXE file going to find
the right one? It has to point at the correct DLL via manifest. When
you transfer your program to the other machine, where's are the
correct DLLs?

I'd still love to hear from anyone who has a coherent method for
solving this.


Dave:

I do. It's called static linking.

David Wilkinson

You're right, that works. HelloWorld is 400K+ but it runs.


Yes, it is. But my modest size MFC app weighs in at only 870KB and is
copy-install to all Win32 platforms. There is no way you can get the
total deployment down to this size if you have to ship MFC and CRT DLL's

I really do not understand why one would not use static linking unless
you have an architecture (MFC extension DLL's or mixed
managed/unmanaged) that requires it.

In addition, the MSLU technique for running "Unicode" apps on Win9x/Me
requires static linking, unless you want to rebuild the MFC and CRT DLL's.

David Wilkinson
Dec 8 '05 #14
On Thu, 08 Dec 2005 07:02:51 -0500, David Wilkinson
I really do not understand why one would not use static linking unless
you have an architecture (MFC extension DLL's or mixed
managed/unmanaged) that requires it.


The latter is not ringing a bell at the moment, David. Why do mixed
managed/unmanaged apps require dynamic DLL linkage?

Dec 8 '05 #15
Dave wrote:
On Thu, 08 Dec 2005 07:02:51 -0500, David Wilkinson
I really do not understand why one would not use static linking unless
you have an architecture (MFC extension DLL's or mixed
managed/unmanaged) that requires it.

The latter is not ringing a bell at the moment, David. Why do mixed
managed/unmanaged apps require dynamic DLL linkage?


Dave:

I read it on the newsgroups. And I must say it was the death-knell for
any thought I had of compiling my MFC app with CLR.

I would like to understand why mixed apps must link dynamically. Anyone?

Back to the thread topic, I must say I am very shocked by what you are
telling us here. Is deployment of dynamic linked applications really so
difficult?

David Wilkinson
Dec 8 '05 #16
"Dave" <Da**@NoEmail.com> wrote in message
news:4k********************************@4ax.com...
It occurs to me that you may not have actually tried this. Build an
unmanaged C++ "Hello World" app with VS2005, transfer it to a
machine that doesn't have VS2005. Then see what you have to
do to get it to run.


Dave, I tried this for you. I used VS2005 to create a C++ Console
Application. I filled in:

int _tmain(int argc, _TCHAR* argv[])
{
printf ("Hello world\n");
return 0;
}

I left all the default settings alone. I built the RELEASE configuration.
The result was HelloWorld.exe that was 5,632 bytes.

I copied that into a VMWARE Win2K installation I had previously configured.
It did not have VS2005 installed in it. I ran the program and got:

"The dynamic link library MSVCR80.DLL could not be found in the specified
path..."

I copied MSVCR80.DLL from my host PC (which has VS2005 installed) from

c:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a 1e18e3b_8.0.50727.42_x-ww_0de06acd

to the virtual machine (into the same folder as HelloWorld.exe). This file
was 626,688 bytes. There was also another file named MSVCR80.DLL in the
folder C:\WINDOWS\WinSxS\amd64_Microsoft.VC80\..., but since I don't have an
amd64, I did not use this one.

I then ran HelloWorld.exe on the virtual machine. It ran fine. HTH, I
really recommend you statically link the RTL instead... but I did not find a
setting in the IDE to choose this.

David
http://www.dcsoft.com


Dec 8 '05 #17
On Thu, 08 Dec 2005 17:01:17 GMT, "David Ching"
<dc@remove-this.dcsoft.com> wrote:
I tried this for you. I used VS2005 to create a C++ Console
Application. I filled in:

int _tmain(int argc, _TCHAR* argv[])
{
printf ("Hello world\n");
return 0;
}

I left all the default settings alone. I built the RELEASE configuration.
The result was HelloWorld.exe that was 5,632 bytes.

I copied that into a VMWARE Win2K installation I had previously configured.
It did not have VS2005 installed in it. I ran the program and got:

"The dynamic link library MSVCR80.DLL could not be found in the specified
path..."

I copied MSVCR80.DLL from my host PC (which has VS2005 installed) from

c:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a 1e18e3b_8.0.50727.42_x-ww_0de06acd

to the virtual machine (into the same folder as HelloWorld.exe). This file
was 626,688 bytes. There was also another file named MSVCR80.DLL in the
folder C:\WINDOWS\WinSxS\amd64_Microsoft.VC80\..., but since I don't have an
amd64, I did not use this one.

I then ran HelloWorld.exe on the virtual machine. It ran fine. HTH, I
really recommend you statically link the RTL instead... but I did not find a
setting in the IDE to choose this.

David
http://www.dcsoft.com


Thanks so much for testing it! I was afraid that it would work for
some... I guess that means it won't be fixed. I'm out of clues.

Re static link: You'd think that might be in the linker options page,
but it's a compile phase option:
Project properties -> C/C++ -> Code Gen -> Runtime Lib
You'd change the /MD option to /MT for release.
/MDd to /MTd for debug build.

Since that fixes the DLL error, it would seem that the problem occurs
due to incorrect generation or interpretation of the manifest file. There
are a few phases though, so I'm not sure how to nail it down.

Thanks again for testing this, David.

Dec 8 '05 #18

"Dave" <Da**@nospam.com> wrote in message
news:7g********************************@4ax.com...
Re static link: You'd think that might be in the linker options page,
but it's a compile phase option:
Project properties -> C/C++ -> Code Gen -> Runtime Lib
You'd change the /MD option to /MT for release.
/MDd to /MTd for debug build.

Thanks, I knew it was something to do with /M<mumble> :-) It's confusing
because on the General page, if you have an ATL or MFC project, there is a
combobox that lets you choose whether it's statically linked or dynamically
linked. I don't know why it doesn't appear for console apps, since they too
require the C RTL if not a framework lib.

Since that fixes the DLL error, it would seem that the problem occurs
due to incorrect generation or interpretation of the manifest file.


I don't have much experience with VC2005 yet, but I did run into a problem
where I had manually added a manifest to a VC6 project, and it caused a
build problem with VC2005. I manually edited the .rc file to remove my
manifest, and it built fine. Perhaps you could do the same thing. Maybe
your old manifest isn't compatible with VC2005 or something.

If all else fails, I would use VC2005 AppWizard to generate a new project
and then add all your source files. Maybe your project wasn't converted
properly.

Cheers,
David
Dec 8 '05 #19
On Thu, 08 Dec 2005 09:44:14 -0500, David Wilkinson
<no******@effisols.com> wrote:
Dave wrote:
On Thu, 08 Dec 2005 07:02:51 -0500, David Wilkinson
I really do not understand why one would not use static linking unless
you have an architecture (MFC extension DLL's or mixed
managed/unmanaged) that requires it.
The latter is not ringing a bell at the moment, David. Why do mixed
managed/unmanaged apps require dynamic DLL linkage?
I read it on the newsgroups. And I must say it was the death-knell for
any thought I had of compiling my MFC app with CLR.
I've written lots of MFC apps but haven't been tempted to recompile
those with CLR. They will probably stay native (they'll still compile
OK with VC6 or 7). I'm not sure how many people are using MFC with
CLR, so maybe MS is just not getting enough feedback to fix problems.

On the other hand, I think some of the Microsoft techs like to close
out trouble tickets whether the problems are fixed or not. There...
all the bugs went away.
I would like to understand why mixed apps must link dynamically. Anyone?
Me too. I'm thinking that when the 2005 .NET Framework is installed
it may fix the bug I've seen, so I don't want to do that. Best find
out what it is now.

But if this shows up indirectly in mixed .NET / Win32 apps, then some
people are really stranded.
Back to the thread topic, I must say I am very shocked by what you are
telling us here. Is deployment of dynamic linked applications really so
difficult?


All VS2005 apps so far run fine from within VS2005, so maybe that's
the solution: Ship VS2005 with every app, with instructions on how to
run it in the debugger. <g>

I was originally skeptical someone told me about the DLL problem. I
told him that he must be doing something wrong (oops). After I was
able to get the bug to surface on a test machine, it now seems easily
reproducible.

I think MS has made DLL versioning way more difficult than it needed
to be. It seems unlikely that intermediate-level users are going to
wrap their minds around stuff that's thrown some of the experts here
(not speaking for myself). Versioned DLLs...great. But you need a
new DLL, complex folder names and other baggage. What did that save?
I have to question why they didn't just issue DLLs with a new name,
like VCRWhatever_50727.DLL. The app reports that it needs it and the
user does a search and downloads it. Forget about that happening now.

All this is for Win32 'Hello World.' Mixed mode has me concerned.

Anyway, policy files are the redeeming feature of the new garbled
mess. If they work, they would handle DLLs with new names and save
downloads if version changes are minor (as is apparently the current
case...VS is creating manifests with old DLL names).

I'm still trying to figure out why this got so convoluted. There is
apparently no way to trace back problems. It has cost me hours. I
know developers who have given up and gone back to earlier compilers.
VS2005 has some compelling features but it looks like beta 3 so far.
I'm not sure how they can fix this.

Dec 9 '05 #20
On Thu, 08 Dec 2005 20:50:19 GMT, "David Ching"
<dc@remove-this.dcsoft.com> wrote:

"Dave" <Da**@nospam.com> wrote in message
news:7g********************************@4ax.com.. .

Maybe your old manifest isn't compatible with VC2005 or something.

If all else fails, I would use VC2005 AppWizard to generate a new project
and then add all your source files. Maybe your project wasn't converted
properly.


Actually this is a new test app, generated under VS2005. My skilled
team of designers and programmers went away for 12 days and came back
with:

#include "stdafx.h"
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
printf("Hello World\n");
return 0;
}

Someone accused them of plagiarism, but I'm not buying it.

Seriously, you don't even need the stdio.h or printf. A completely
stock untouched, empty Win32 console app will fail to run on our test
machine.

Dec 9 '05 #21

"Dave" <Da**@noemail.com> wrote in message
news:ac********************************@4ax.com...
On Thu, 08 Dec 2005 20:50:19 GMT, "David Ching"
<dc@remove-this.dcsoft.com> wrote:

"Dave" <Da**@nospam.com> wrote in message
news:7g********************************@4ax.com. ..

Maybe your old manifest isn't compatible with VC2005 or something.

If all else fails, I would use VC2005 AppWizard to generate a new project
and then add all your source files. Maybe your project wasn't converted
properly.


Actually this is a new test app, generated under VS2005. My skilled
team of designers and programmers went away for 12 days and came back
with:

#include "stdafx.h"
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
printf("Hello World\n");
return 0;
}

Someone accused them of plagiarism, but I'm not buying it.

Seriously, you don't even need the stdio.h or printf. A completely
stock untouched, empty Win32 console app will fail to run on our test
machine.


I just ran across http://blog.kalmbachnet.de/?postid=54 which says, "If you
build your app with VC2005 and you accidently have disabled the embedding of
the manifest file (or deleted the separate appname.exe.manifest file), you
will get an error on XP and later!"

-- David
http://www.dcsoft.com
Dec 18 '05 #22
The recommendation in this article only applied to Beta 2 release and
applocal deployment. Please see VC docs on MSDN on how to deploy VC++
applications. Here are examples on how to deploy apps,
http://msdn2.microsoft.com/en-us/library/ms235285.aspx and overall section
describing supported policies for redistribution of VC++ libraries,
http://msdn2.microsoft.com/en-us/library/ms235316.aspx.

Nikola

--
Nikola Dudar
Visual C++ Team
This posting is provided "AS IS" with no warranties, and confers no rights.
Suggestions? Bugs? Talk directly to dev teams using
http://lab.msdn.microsoft.com/productfeedback/
My Blog - http://blogs.msdn.com/nikolad/
"Dave" <Da**@noemail.com> wrote in message
news:41********************************@4ax.com...
On Mon, 5 Dec 2005 14:08:50 +0100, "Willy Denoyette [MVP]"
<wi*************@telenet.be> wrote:
"Dave" <Da**@noemail.com> wrote in message
... printf("Hello"); compiled w VS2005 will not run on a
machine unless VS2005 has been installed.

Again, the error message is: "This application has failed to start
because the application configuration is incorrect. Reinstalling the
application may fix this problem."

You'll have to add the .manifest file to your distributon or you need to
embed the manifest to the .exe file (this is normaly done when you build
from within the IDE).
Note that on XP and higher, MSVCR80.dll (and other C++ runtime dll's)
should
be installed in the SxS folder (Side by Side assembly folder).
Please search MSDN for "manifest" and "side by side assemby" for more
details on shared runtime assemblies.


Thanks for the followup, Willie. I had hoped that this was a simple
global config option, but it appears not.

If I'm understanding this, the "Hello World 2005" tutorial just grew
from one page to about 4 chapters (versioning schemes, manifests,
deployment strategies, etc).

This looks like a horrible blunder by the Microsoft team. MS needs to
devise an intelligent tool that will make deployment easy. Especially
since many writing Win32 code under VS2005 are just trying to port
their old apps. Given the likelihood that users will encounter this
problem, I'd also think that MS's error messages could be better.

I've looked through the code at Nikola Dudar's blog:
http://blogs.msdn.com/nikolad/archiv...18/398720.aspx
Tried the recommendation, but just traded in for a different set of
error messages.

Does anyone have a coherent list of changes (to manifests, DLLs,
whatever) that will make VS2005 apps work?

Dec 21 '05 #23
Deploying VC++ DLLs into System32 is wrong way to redistribute VC++
libraries. Please review Deployment section of VC++ docs,
http://msdn2.microsoft.com/en-us/library/ms235316.aspx where you may find
examples on how to deploy apps,
http://msdn2.microsoft.com/en-us/library/ms235285.aspx

Nikola VC++
--
Nikola Dudar
Visual C++ Team
This posting is provided "AS IS" with no warranties, and confers no rights.
Suggestions? Bugs? Talk directly to dev teams using
http://lab.msdn.microsoft.com/productfeedback/
My Blog - http://blogs.msdn.com/nikolad/
"Dave" <Da**@Nomail.com> wrote in message
news:61********************************@4ax.com...
I understand that VS.NET is supposed to compile native Win32 apps that
do not require the .Net runtime. If that's the case then there is
something else from the VS200x package that is required.

MSVCR80.DLL and MSVCR80D.DLL are present and accounted for in
Windows\System32. This is something else.

Message says that the application configuration is incorrect. I just
compiled a simple "Hello.cpp" app that exhibits the same behavior so
this should be easy to duplicate.

What's missing?

Dec 22 '05 #24
> I just ran across http://blog.kalmbachnet.de/?postid=54 which says, "If
you build your app with VC2005 and you accidently have disabled the
embedding of the manifest file (or deleted the separate
appname.exe.manifest file), you will get an error on XP and later!" Correct. Same is stated in the VC docs,
http://msdn2.microsoft.com/en-us/library/ms235316.aspx

In order for you application to run on a computer that does not have VS
installed, same as in VC6, VC7.x, in VS2005 you need to redistribute VC++
runtime libraries. The supported ways are documented in Deployment section
of VC docs,
http://msdn2.microsoft.com/en-us/library/zebw5zk9.aspx

Nikola

--
Nikola Dudar
Visual C++ Team
This posting is provided "AS IS" with no warranties, and confers no rights.
Suggestions? Bugs? Talk directly to dev teams using
http://lab.msdn.microsoft.com/productfeedback/
My Blog - http://blogs.msdn.com/nikolad/
"David Ching" <dc@remove-this.dcsoft.com> wrote in message
news:tO*******************@newssvr27.news.prodigy. net...
"Dave" <Da**@noemail.com> wrote in message
news:ac********************************@4ax.com...
On Thu, 08 Dec 2005 20:50:19 GMT, "David Ching"
<dc@remove-this.dcsoft.com> wrote:

"Dave" <Da**@nospam.com> wrote in message
news:7g********************************@4ax.com ...

Maybe your old manifest isn't compatible with VC2005 or something.

If all else fails, I would use VC2005 AppWizard to generate a new project
and then add all your source files. Maybe your project wasn't converted
properly.


Actually this is a new test app, generated under VS2005. My skilled
team of designers and programmers went away for 12 days and came back
with:

#include "stdafx.h"
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
printf("Hello World\n");
return 0;
}

Someone accused them of plagiarism, but I'm not buying it.

Seriously, you don't even need the stdio.h or printf. A completely
stock untouched, empty Win32 console app will fail to run on our test
machine.


I just ran across http://blog.kalmbachnet.de/?postid=54 which says, "If
you build your app with VC2005 and you accidently have disabled the
embedding of the manifest file (or deleted the separate
appname.exe.manifest file), you will get an error on XP and later!"

-- David
http://www.dcsoft.com

Dec 22 '05 #25

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

28
by: Grant Edwards | last post by:
I finally figured out why one of my apps sometimes fails under Win32 when it always works fine under Linux: Under Win32, the pickle module only works with a subset of floating point values. In...
7
by: Jacky Luk | last post by:
Can .NET Version 2002 produce win32 native code? I'm engaged to a Direct3D project that requires win32 Thanks Jack
11
by: Andy Chau | last post by:
Is there a .NET or C# to native x86 compiler? I am not looking for just a prejitter progrom like ngen, but a true native compiler like the gcc for java if there is such a thing. Thanks ...
9
by: deko | last post by:
I'm confused about what I can use C# and VS.NET for. I have both Visual Studio 6.0 and Visual Studio .NET - which one do I use? If I want to build a basic VB app, I assume I can use the VB 6...
15
by: jedi200581 | last post by:
Hi! Is there anyway to compile native Win32 application with .NET 2003 and thus write program for computer which doesn't have the framwork installed ? If not ----> gcc!! Thanks.
14
by: Greg | last post by:
Is it possible that in some future version of Windows, only .NET (CLR) PE (Portable Executables) .exe will be enabled to run. I.e. the OS will not support running of native x86 code .exes/dlls? ...
21
by: Paul Edwards | last post by:
I have written a public domain (not GPL etc) C runtime library (PDPCLIB) for DOS, OS/2 and MVS. You can see it here: http://sourceforge.net/projects/pdos/ I now wish to port it to Win32, so...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.