Answer Questions
CodeMaker (MSVCRT) _iob disappeared?
What can I do to replace the functionality of _iob Seems to be missing in MSVCR7/8 (using VS2005). It is not necessary for the developer to access _iob directly for this problem to occur. We're running into the same problem when linking with libs which were compiled under VC 6. It could be that any lib calling printf() family functions wind up compiling a reference to _iob into the executable/librar ...Show All
Mike_C123456789 Invoke Intel C++ compiler from VS2005 Pro
I need to compile the Release configuration of DVDx (SourceForge) from VS2005Pro with teh Intel C++ compiler (either 8 or 9 version). The Intel C++ 9 installer is supposed to proceed VS .Net 2003 integration which doesn't work for VS2005. How can I do this integration manually In the latest Intel C++ 9.0.029 a Readme file says that VS2005 will be supported when officially released by Microsoft. So I g ...Show All
Tony Roebuck MSFT Problem compiling a program
Hi all, recently i had to work on a program which was running ok on VC++ 6. Due to certain restrictions i only can work with visual studio 2005 express beta 2. When i tried to compile the program in VS 2005 express beta 2, i got these errors which never occurred in VC++ 6: Compiling... STDAFX.CPP Compiling... Database.cpp DatabaseMarpos.cpp DataCom.CPP DBMarpos.cpp EBlockEntry.cpp EBlockLabel.cpp EdcsSettings.cpp EDCSSetupDialog ...Show All
Raja Ratheesh Another lnk2005 problem
I know there's been a number of Lnk2005 error questions in this forum, but I have not been able to resolve my problem after reading them. Compiler: VS2003 I'm trying to create an MFC extension DLL that calls, among other things, another (in-house) DLL that uses MFC classes. The new DLL also brings in a number of files from another project that was not using MFC. The DLL was initially set up as a Win32 dll (no MFC). When I took over the project ...Show All
Joey Beninghove VS .Net 2005, how to disable intellisense...
Hi I am really frustrated with the performance of VS .Net 2005. This is because I always see at the bottom "updating intellisense..." and it uses 60% to 70% of CPU. How to disable this updating of intellisense... Please this is making Visual studio unusable. Thanks Chandra Traian, We did a lot of work to increase Intellisense precision in VC8 so what you mention seems a little suprising. Could you post a s ...Show All
Mark Gladding First time Visual C++ user
i'm sure this is a pretty easy question to the expierenced programmer but i just started C++ and this is my first time using visual C++ 6.0. My question is.... I want to have a universal set <a e i o u> i want users to enter 2 bit strings ( example 10000= a 01000= e 00100= i 00010=o 00001=u) After they input the two bit strings numerically i need to find the intersection or union (user presses U fo ...Show All
tonyr1977 Problems compiling COM based sample application in Visual Studio 2005
Ok, vanilla install of Visual Studio 2005 and Platform SDK. I copied and pasted some text from wmi samples into an empty Win32 console project with C++ and having some issues with compilation. Apparently even adding #define _WIN32_DCOM was not enough, compiler complains that CoInitializeEx is not found and other identifiers that are usually in objbase.h My code initialization is #define _WIN32_DCOM #include <Windows.h> #include "stdaf ...Show All
Dmitriy Vasyura - MSFT manifest missing DLL - recurrent problem
Hello, It occured before and vanished .. when i copied the DLL to windows\system32 folder I created a win32 console application my Mytest.exe.intermediate.manifest is pasted below ------------------------------------------------------------------------------- < xml version='1.0' encoding='UTF-8' standalone='yes' > <assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'> <dependency>   ...Show All
Dave Gelowitz Question Regarding Automation
Hi, I'm dealing with some automation for my code, and there is some syntax that is there that confuses me I have code like this: BEGIN_DISPATCH_MAP( MyDocument, C CmdTarget ) //{{AFX_DISPATCH_MAP(MyDocument) DISP_FUNCTION(MyDocument, "SetVisible", SetVisible, VT_EMPTY, VTS_BOOL) //}}AFX_DISPATCH_MAP DISP_FUNCTION(MyDocument, "SetInvisible", SetInvisible, VT_EMPTY, VTS_BOOL) END_DISPATCH_MAP() The part i dont understand is why the A ...Show All
Moshik Which thread??
I have an app which is soon to be multithreaded - calling a function with each of n threads (the same function). This is done in a for loop, however when the function is entered I wish to know which thread it is that is entering it, as depending upon the number of the thread I wish to grab different values from a class. Is it possible to pass a value to a function through the thread call i.e. passing the count from the for loop to the function i ...Show All
Jes&#250;s L&#243;pez worked fine for me, failed for them
I've written a small windows form app with express beta2 in C++ (I figured I'd post here since it prolly relates to a general VS thing, I dunno) It worked fine for me, so I zipped it and sent it to a friend, but when he tried to run it, he got the erro message saying: "This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem." Being new to Visual Studio, I' ...Show All
Bill T. VS 2005 Compile issue
Hi, I just got Visual Studio 2005 up and running and tried using it on a project that I have been working on in VS2003. Got a lot of compile errors. One that comes up quite frequently has to do with some generated code within InitialzeComponent(). For example a button click event line such as, this->btnRunSim->Click+= new System::EventHandler(this, btnRunSim_Click); The compiler fails on the second argument, tells me that I hav ...Show All
mjwigham DLL initialization failure
I've translated a VC7 project that builds a COM dll, to VC8. It builds, but I can't register it: Regsvr32 reports "LoadLibrary("<path>") failed - A dynamic link library (DLL) initialization routine failed." The dependency viewer suggests that all the required libraries are present. The failure occurs before execution reaches by code (DllMain). How can I debug and find out what's going on Phil Atkin ...Show All
Arun Shrivats I/O file in MFC
I find it difficult to learn how MFC works! I've created a tester application with the MFC wizard, it auto-generate a File menu, with Open, Save... ..the wizard generate this command in the Class Message Map: Here's how the default implementation of OnFileOpen works: CString newName; if (!DoPromptFileName(newName, &nb ...Show All
Anaheim is it possible that a cpp file will "recognize" a c file from another project ?
Hi everyone, I have a console application project which I wrote in c , this project uses the lame encoder written in C. Now my Boss has asked me to rewrite this project in c++, unfortunattelly after I turned each c file into cpp file , I got linkage errors since apparently the c++compiler of visual studio 6.0 doesn't recognize the c code of the lame project. any idea anyone what I should do next regards, Uri ...Show All
