473,394 Members | 1,879 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,394 software developers and data experts.

v2005 vs. v2008 Configuration settings

Hello,

I am able to successfully compile/link/and execute my v2005 applications using
v2008 (after the v2008 automatically converts the v2005 configurations
settings).

I created a "generic" v2008 app wizard program. I changed the configuration
settings of the new v2008 to match the "generic" app wizard configuration
settings. The applications compile/link OK, but the programs do not execute
correctly.

Instead of using trial and error to try and identify which setting(s) are
causing
the problem. Does anyone know what configuration setting(s) could possibly be
causing the execution problems?

Thanks,
-jc
Oct 12 '08 #1
10 1112
>I created a "generic" v2008 app wizard program. I changed the configuration
>settings of the new v2008 to match the "generic" app wizard configuration
settings. The applications compile/link OK, but the programs do not execute
correctly.
Did you try building & running before changing the settings? Did that
work?

Which settings have you changed?

When you say it doesn't execute correctly, what precisely do you mean
- does it start, crash, or something else?

Dave
Oct 12 '08 #2


"David Lowndes" wrote:
I created a "generic" v2008 app wizard program. I changed the configuration
settings of the new v2008 to match the "generic" app wizard configuration
settings. The applications compile/link OK, but the programs do not execute
correctly.

Did you try building & running before changing the settings? Did that
work?

Which settings have you changed?

When you say it doesn't execute correctly, what precisely do you mean
- does it start, crash, or something else?

Dave
Dave,

Thank you for replying to my posting. I apologize for the confusion, you
asked if I compiled/linked and executed the program before I changed the
settings. Yes, I was able to successfully compile/link and execute the
program before I changed the settings. The execution problems occured after I
changed the settings.

I know when I stated the program did not execute correctly, that might also
cause some confusion. The program does start and does not crash. There is
part of the application that just does not execute. Actually, it took me a
couple of days before I realized that part of program was not executing. I
tested the main part of the program, and just assumed that the rest of
program was running OK.

Thanks,
-jc

Oct 13 '08 #3
"jc" <jc@discussions.microsoft.comwrote in message
news:14**********************************@microsof t.com...
>

Thank you for replying to my posting. I apologize for the confusion, you
asked if I compiled/linked and executed the program before I changed the
settings. Yes, I was able to successfully compile/link and execute the
program before I changed the settings. The execution problems occured
after I
changed the settings.

I know when I stated the program did not execute correctly, that might
also
cause some confusion. The program does start and does not crash. There is
part of the application that just does not execute. Actually, it took me a
couple of days before I realized that part of program was not executing. I
tested the main part of the program, and just assumed that the rest of
program was running OK.

Thanks,
-jc
Did the specific part of the program that now misbehaves execute correctly
before you changed configuration settings? If so, do what David suggested
and change them back.
If you don't recall which settings you changed, you can take a shot at this:

Tools->Import and Export Settings->Select "Reset All Settings", then save
your current settings or don't as you see fit.->Select the Default
Collection of Settings you had previously. That should put you back at
default.

If that doesn't work, and you kept a backup copy of the VS 2005 project, you
may have to uninstall VS 2008, and physically delete an files left in the
install folder, then reinstall. Then convert your backup using the defaults.

Oct 13 '08 #4
>I know when I stated the program did not execute correctly, that might also
>cause some confusion. The program does start and does not crash. There is
part of the application that just does not execute.
Why, what's special about that aspect - does it interface to a DLL by
any chance?

Have you tried debugging it to find what's going wrong?

Dave
Oct 13 '08 #5


"David Lowndes" wrote:
I know when I stated the program did not execute correctly, that might also
cause some confusion. The program does start and does not crash. There is
part of the application that just does not execute.

Why, what's special about that aspect - does it interface to a DLL by
any chance?

Have you tried debugging it to find what's going wrong?

Dave
Yes, the part of the application that does not execute does interface to a
DLL.

Thank you for taking the time to respond to my posting. I have found a backup
copy of the previous v2005 settings, and I am now using the old settings and
the
program is running OK.

Thanks again,
-ic
Oct 13 '08 #6
jc wrote:
"David Lowndes" wrote:
>>I know when I stated the program did not execute correctly, that
might also cause some confusion. The program does start and does
not crash. There is part of the application that just does not
execute.

Why, what's special about that aspect - does it interface to a DLL by
any chance?

Have you tried debugging it to find what's going wrong?

Dave

Yes, the part of the application that does not execute does interface
to a DLL.
Are you running on a 64-bit version of Windows by any chance?
>
Thank you for taking the time to respond to my posting. I have found
a backup copy of the previous v2005 settings, and I am now using the
old settings and the
program is running OK.

Thanks again,
-ic

Oct 13 '08 #7


"Ben Voigt [C++ MVP]" wrote:
jc wrote:
"David Lowndes" wrote:
>I know when I stated the program did not execute correctly, that
might also cause some confusion. The program does start and does
not crash. There is part of the application that just does not
execute.

Why, what's special about that aspect - does it interface to a DLL by
any chance?

Have you tried debugging it to find what's going wrong?

Dave
Yes, the part of the application that does not execute does interface
to a DLL.

Are you running on a 64-bit version of Windows by any chance?

Thank you for taking the time to respond to my posting. I have found
a backup copy of the previous v2005 settings, and I am now using the
old settings and the
program is running OK.

Thanks again,
-ic
Hello Ben,

Yes, I am running on a dual-core AMD64, 2GB memory, 1/2 TB disk, WinXP(x64).

-jc
Oct 13 '08 #8
jc wrote:
"Ben Voigt [C++ MVP]" wrote:
>jc wrote:
>>"David Lowndes" wrote:

I know when I stated the program did not execute correctly, that
might also cause some confusion. The program does start and does
not crash. There is part of the application that just does not
execute.

Why, what's special about that aspect - does it interface to a DLL
by any chance?

Have you tried debugging it to find what's going wrong?

Dave
Yes, the part of the application that does not execute does
interface to a DLL.

Are you running on a 64-bit version of Windows by any chance?
>>>
Thank you for taking the time to respond to my posting. I have found
a backup copy of the previous v2005 settings, and I am now using the
old settings and the
program is running OK.

Thanks again,
-ic
Hello Ben,

Yes, I am running on a dual-core AMD64, 2GB memory, 1/2 TB disk,
WinXP(x64).
You can't load 32-bit DLLs into a 64-bit process. Make sure the main .NET
executable is marked as "X86", not "Any CPU".
>
-jc

Oct 15 '08 #9
Hi Ben,

Thank you for replying to my posting.

I apologize, for the confusion, concerning
my development environment. I am running
WinXP(x64), but I am developing a 32-bit
application. I am aware that you cannot
load a 32-bit dll into a 64-bit process.

-jc

"Ben Voigt [C++ MVP]" wrote:
jc wrote:
"Ben Voigt [C++ MVP]" wrote:
jc wrote:
"David Lowndes" wrote:

I know when I stated the program did not execute correctly, that
might also cause some confusion. The program does start and does
not crash. There is part of the application that just does not
execute.

Why, what's special about that aspect - does it interface to a DLL
by any chance?

Have you tried debugging it to find what's going wrong?

Dave
Yes, the part of the application that does not execute does
interface to a DLL.

Are you running on a 64-bit version of Windows by any chance?
Thank you for taking the time to respond to my posting. I have found
a backup copy of the previous v2005 settings, and I am now using the
old settings and the
program is running OK.

Thanks again,
-ic
Hello Ben,

Yes, I am running on a dual-core AMD64, 2GB memory, 1/2 TB disk,
WinXP(x64).

You can't load 32-bit DLLs into a 64-bit process. Make sure the main .NET
executable is marked as "X86", not "Any CPU".
Hello
>

Oct 15 '08 #10
jc wrote:
Hi Ben,

Thank you for replying to my posting.

I apologize, for the confusion, concerning
my development environment. I am running
WinXP(x64), but I am developing a 32-bit
application. I am aware that you cannot
load a 32-bit dll into a 64-bit process.

-jc
Yeah, but I'm guessing the non-working project settings aren't generating
the 32-bit executables you want.
>
"Ben Voigt [C++ MVP]" wrote:
>jc wrote:
>>"Ben Voigt [C++ MVP]" wrote:

jc wrote:
"David Lowndes" wrote:
>
>>I know when I stated the program did not execute correctly, that
>>might also cause some confusion. The program does start and
>>does not crash. There is part of the application that just does
>>not execute.
>>
>Why, what's special about that aspect - does it interface to a
>DLL by any chance?
>>
>Have you tried debugging it to find what's going wrong?
>>
>Dave
>>
>
Yes, the part of the application that does not execute does
interface to a DLL.

Are you running on a 64-bit version of Windows by any chance?

>
Thank you for taking the time to respond to my posting. I have
found a backup copy of the previous v2005 settings, and I am now
using the old settings and the
program is running OK.
>
Thanks again,
-ic

Hello Ben,

Yes, I am running on a dual-core AMD64, 2GB memory, 1/2 TB disk,
WinXP(x64).

You can't load 32-bit DLLs into a 64-bit process. Make sure the
main .NET executable is marked as "X86", not "Any CPU".
Hello

Oct 16 '08 #11

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

Similar topics

1
by: serge calderara | last post by:
dear all, I have problem accessing section group in my configuration application file. I got an error saying thta I can have only one section ???? here is my application configuration looks...
3
by: Florida Coder | last post by:
I have the need to store some application specific configuration data to be used by a class library and or a windows service. I would like to do this in a fashion similar to the way we do with...
3
by: Gary Brown | last post by:
Hi, Is there a resource that lists where a control's variables are put? VC puts data such as a ListView's Items in fields that bear no resemblance to the programmer's view. After documenting...
5
by: Water Cooler v2 | last post by:
I know that we can add a single name value entry in app.config or web.config in the configuration/configSettings/appSettings section like so: <add key="key" value="value" /> Question: I want...
1
by: Prabakar Samiyappan | last post by:
I am very new to V2005 .and now i have stared a new project in that anybody who have experianced plz give me some suggestion /rules to be followed while doing a asp.net project in V2005 Regards...
4
by: aSoundMind | last post by:
Hi there, I recieve this error Server Error in '/integrate' Application. -------------------------------------------------------------------------------- Configuration Error Description: An...
2
by: Jan Eliasen | last post by:
Hi I am having some problems reading configuration values from a configuration file, using C# 2.0. I have programmed a Windows Service, and this part goes well - it runs nicely. Now, the...
2
by: remya1000 | last post by:
i'm using VB.NET 2003. Last time while i did a program in Vb.Net 2005, i use "Configuration". and i could read and write to that XML configuration file like the example below. CODES:...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.