Questions tagged [vc90]

14 questions
5
votes
2 answers

C linkage function cannot return C++ class - error resulting from the contents of my method

I am exporting a method that can be called from unmanaged code, but the function itself lives in a managed c++ project. The following code results in a compiler error: error C2526: 'System::Collections::Generic::IEnumerator::Current::get' : C…
Liz
  • 8,780
  • 2
  • 36
  • 40
3
votes
5 answers

jsoncpp on vc90?

anyone have jsoncpp working on vc90? they use a build system, Scons, which I have never heard of. I installed the latest Scons, found an undocumented scons.bat, launched a vc90 prompt in my jsoncpp dir, modified the SConstruct file to support a…
Dustin Getz
  • 21,282
  • 15
  • 82
  • 131
3
votes
2 answers

HowTo build Qt5 with correctly distributed release pdb files

I'd like to build Qt5 from sources with PDB files in debug and release mode, but I faced with two problems: no release PDB files generated (here is the solution), qt build system didn't deploy release PDB files to given prefix build folder as it…
mosg
  • 12,041
  • 12
  • 65
  • 87
2
votes
0 answers

VS2008 generated dll has dependency to two different versions of CRT assembly

My VS2008 projects generates a dll and links against two other static library. Here is the generated manifest :
jumar
  • 5,360
  • 8
  • 46
  • 42
2
votes
1 answer

FindBoost.cmake: Use different Compiler-version (vc90 instead of vc100)

I'm using Visual Studio 2010 with the MSVC90 compiler. Because of this I only have Boost for VC90 installed. Now I have a Thirdparty-component which is dependant on Boost and which I want to use. This components build system is CMake. When I try to…
MOnsDaR
  • 8,401
  • 8
  • 49
  • 70
1
vote
1 answer

Dependent Assembly Microsoft.VC90.CRT could not be found Error

I have a .NET application that references some C++ assemblies. My application requires the Visual C++ 9 runtimes to be installed on the machine to run. If I download and install the runtime setup vcredist_x86.exe everything works fine. However I…
G-Man
  • 7,232
  • 18
  • 72
  • 100
1
vote
0 answers

uploading large file using libcurl c++

can you tell me what is there written three options I wrote a function to upload files using libcurl here: long RequestUploadFile(CkString Url,CkStringArray* filename,CkStringArray* filepaths) { CURL *curl; CURLcode res; char *url =…
Ameer Hamza
  • 108
  • 13
1
vote
1 answer

how to implode CkStringArray like php?

is Chilkatsoft has implode function of CkStringArray if not then how can we combine all CkStringArray members and get a CkString object CkString implode(char* key, CkStringArray* StrArray) { CkString rt; CkString tmp; for (int i = 0; i <…
user3156099
0
votes
1 answer

how to print variable number of arguments? (ANSI C)

I'm trying to compare the bits of variable number of arguments and print their value. but I'm getting garbage. what am I doing wrong? My Code: #include #include void and_bits(unsigned int num, ...) { unsigned int i = 0; /*…
0
votes
1 answer

CString wrote as an unsigned char

I am building an application to read and write to a microchip`s memory. I need to pass an unsigned char array that has 4 fixed bytes and 2 variable bytes so suposing I want to read memory bank 0004 I will pass unsigned char…
Mateus
  • 1
  • 1
0
votes
2 answers

using libcurl with chilkat getting errors

i'm using chilkat and libcurl in same project when i build the project with Runtime Library => Multi-threaded DLL (/MD) then i get these errors and warning: Error 4 error LNK1169: one or more multiply defined symbols found Error 1 error…
Ameer Hamza
  • 108
  • 13
0
votes
1 answer

Visual Studio 2012 Debug .exe Needs Microsoft.VC90.DebugCRT

When I build the debug configuration, the .exe fails to launch. It reports The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for…
user3731622
  • 4,844
  • 8
  • 45
  • 84
0
votes
1 answer

VC Merge Modules Not Updating

I posted an issue a while back: https://stackoverflow.com/questions/16123872/visual-c-runtime-8-0-50727-6910-merge-module where I had an issue that I could find a particular version of a merge module. I have since attempted to reinstall SP1 of both…
0E322070
  • 762
  • 1
  • 5
  • 15
0
votes
1 answer

unable to display png and gives warning in some part of code in my application after msi installation

I want to know the complete method of msi installation because The msi file created when installed is not displaying the pictures that are of .png type why does this happen and how to solve this problem? Before creating msi when I execute the…