Visual C++ 2005 Express Edition
Hi I'm using visual c++ express since yesterday and I have an error that visual c++ 6.0 didn't detect :p
I think it can be some program configuration... :o
1>------ Rebuild All started: Project: IUCUNN, Configuration: Debug Win32 ------
1>Deleting intermediate and output files for project 'IUCUNN', configuration 'Debug|Win32'
1>Compiling...
1>StdAfx.cpp
1>Compiling...
1>IUCUNN.cpp
1>Layer.cpp
1>Matrix.cpp
1>Generating Code...
1>Compiling manifest to resources...
1>Linking...
1>LINK : fatal error LNK1104: cannot open file 'odbc32.lib'
1>Build log was saved at "file://d:\2ยช parte\IUCUNN_09_mar__\Debug\BuildLog.htm"
1>IUCUNN - 1 error(s), 0 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
Can you help me?
regards
gampalu
Junior Poster in Training
78 posts since Mar 2006
Reputation Points: 21
Solved Threads: 0
Can anyone help me?
:cry:
gampalu
Junior Poster in Training
78 posts since Mar 2006
Reputation Points: 21
Solved Threads: 0
1>LINK : fatal error LNK1104: cannot open file 'odbc32.lib'
This means that the linker cant find this library file. Set the library files path of Visual studio to the folder that this is in. Most probably that folder will be the Lib directory of the Platform SDK installation.
WolfPack
Postaholic
2,051 posts since Jun 2005
Reputation Points: 572
Solved Threads: 115
And you will probably also have to download the Windows SDK free from Microsoft.
That will not be the only porting problem. VC++ 2005 Express is a lot more c++ IOS standards compliant than VC++ 6.0, so that will be a little bit of recoding required.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
And you will probably also have to download the Windows SDK free from Microsoft.
As he says that it worked with Visual Studio 6.0, most probably some form of that file should be in his computer already. Good to have the latest version of the PSDK though. Especially with the brand new compiler. :D
WolfPack
Postaholic
2,051 posts since Jun 2005
Reputation Points: 572
Solved Threads: 115
As he says that it worked with Visual Studio 6.0, most probably some form of that file should be in his computer already. Good to have the latest version of the PSDK though. Especially with the brand new compiler. :D
Visual Studio 6.0 is shipped with those dlls -- he doesn't need the Windows SDK for that.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
he does need the PSDK, as the versions shipped with VC6 are so far outdated that VC2005 will not work with them.
VC2005 requires the latest version of the PSDK.
jwenting
duckman
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337
he does need the PSDK, as the versions shipped with VC6 are so far outdated that VC2005 will not work with them.
VC2005 requires the latest version of the PSDK.
I meant he doesn't need the psdk with VC++ 6.0 but he does need it with VC++ 2005 express.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343