Software Development Network Logo
  • Game Technologies
  • Architecture
  • .NET Development
  • VS Express Editions
  • Visual FoxPro
  • Microsoft ISV
  • VS Team System
  • Windows Vista
  • Visual C++
  • Smart Device
  • Visual J#
  • Windows Live
  • Windows Forms
  • Visual C#
  • Visual Studio

Software Development Network >> Visual C++

Visual C++

New Question

Avoiding compiler complains about redefine variables???
Relative paths in additional include directories
Visual Studio 2005 MFC Applications on Windows 98
Is there a simple way....
Basic DLL Problem, I hope...
How to debug input method editor (IME) DLLs?
Is there no official support for VC6.0?
Code from MSDN article doesnt work on Win2K
Framework and related question
Singular preprocessor definition needed

Top Answerers

Kerem Karatal
SKamie
net34
psiegers
NaveenS
WarAngel
rgudgeon
gabba
Troy Deppert
usmanm
Pentelar Consulting Inc.
Only Title

Answer Questions

  • KS Reference dll

    I'am learning VB.NET and VC++. I created a dll in VC++, but VB.NET didn't recognize it as a reference dll. So my question is how do I make my VC++ dll, a reference dll try looking at: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconconsumingunmanageddllfunctions.asp     Thanks! ...Show All

  • FM52 Need a good book on Visual C++ .NET

    Hi, I am new to visual C++ .NET and could anyone suggest which book shall I follow to grash things Thanks ..man... may be i should be put the question some thing like ths.. hw difficult it is to convert the application developed to VC++ .NET to Visual C++ 2005 Express... application... Saraav@discussions.microsoft.com wrote: Hi, I am new to visual C++ .NET and could anyone suggest which book shall I follow to ...Show All

  • Adrian Hibbert Dual Monitors - HtmlHelp - Popup locations

    Hi I am working with a dual monitor system. The secondary monitor is on the left side of the primary monitor, which means that the secondary monitor has negative x coordinates. The program that runs on the secondary monitor uses HtmlHelp() to create a Help window from a .chm file, on the secondary monitor. The help pages have pictures of the user interface with buttons and popups appear when a button is clicked. The problem is that the popup ...Show All

  • ShanSara Compiler's bug? It cleaned the parameter stack on a stdcall invoke.

    I defined a function pointer type: typedef DWORD (*WINAPI TShowDialog)(LPCE_FILE_DIALOG); and a variant with this type, then load it by LoadLibrary/GetProcAddress from a DLL, the DLL exported a stdcall function with the same prototype and the same calling convention. but when I call this function, after done, the debugger notice the ESP has changed. I'm sure the DLL is correct, and the function pointer variant and the function exporte ...Show All

  • QbProg 50% cpu utilization poor performance of debugger in vs2005 july ctp

    I can't debug program because devenv sits at 100% cpu after starting debug of 64bit application . As if it's polling . Ide gui is not refreshing . The launched  exe to debug shows in task manager , no cpu . What's the ide doing/ waiting for (so far its chalked up about 20 minutes cpu and no end in sight)  -chaz ok I did that . There was actually another user reporting the same bug with the July ...Show All

  • amenhotep conditional compilation; Intellisense doesnt seem to be working

    Dear All. I am using VC 2005, writing a chunk of code like this... #ifdef USE_LICENSING #include<file1.h> code... code.. #endif the editor grays out the code between then ifdef and endif tags, I can use features like intellisense only if i comment out ifdef and endif tags.. anyone aware of this Satish Boston,MA. This has previously been reported here along with a related issue (please vote): http://lab.msdn.microsoft.com/productfe ...Show All

  • audioGuy Sharing Data between DLLs

    I have dll, common.dll, which has global data. I want to share this global data with another dll. I've set the linker options on the common.dll as follows: /SECTION:.bss, rws /SECTION:.data, rws. When I step into the code it appears that both dlls have their own copy of the global data. What am I doing wrong Thanks. Omar Canon Doesn't the /SECTION compiler flag do the same thing No. Check the docs. Use #p ...Show All

  • Dave# A simple CPP source file change caused entire solution to relink

    My group is new to VS05 and previously used VS 6.0. Several people in our group have had an ongoing battle with the compiler. It seems that when you make a simple change to a CPP source file that it will cause the entire solution to have to relink. We do have dependencies set between several projects within the solution, but if I am not changing a common header file or a method signature then I would not expect all of the project to need to be r ...Show All

  • Mirko1728 Built-in type traits

    Question regarding http://msdn2.microsoft.com/library/ms177194(en-us,vs.80).aspx __has_nothrow_xxx seem to demand ctor, copy & assignment to have explicit nothrow declaration, contrary to what the docs say: "__has_nothrow_constructor(type) Returns true if the default constructor has an empty exception specification or can be deduced to never throw an exception." struct A {     A() {} // clearly does not throw, but __has_noth ...Show All

  • ArthurDent HRESULT in managed code

    Hello Everyone, I'm new to managed code, if I have something like this in WIN 32, how can I move it to managed.. HRESULT result = _channel->WritePacket(( unsigned char *)buffer, strlen(buffer)); return (!FAILED(result)); How can I do the same thing...... Thanks, Harsimrat Harsimrat wrote: ... HRESULT result = _channel->WritePacket(( unsigned char *)buffer, strlen(buffer)) ...Show All

  • Johan Johansson Resource Compiler Fatal Error in Visual Studio 2005 Beta

    It's impossible to launch Resource Editor from IDE. Resource Compiler Fatal Error RC1107 is displayed. Charming! So, I've wasted half an hour downloading this, and around the same again getting the img file burned onto disk, and installed, half an hour pratting around setting up a project, only to find that this VERY basic functionality is deliberately missing - and that's only confirmed after doing a web s ...Show All

  • Ebnez 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 I have the same problem (and may be working for the same company)  My solution has more then 30 projects consisting of a total ...Show All

  • etorres Invalid signal

    Hi, With vc8 we now get the error Invalid signal or error when we try to unregister ourselves for signal 5 (ctrl-c). No idea what is happing, this works with vc6/vc7/vc71 and vc8 beta without issues. Someone an idea When I just start our app, press ctrl-c we get the assert in the runtime. This just didn't happen in the past. Does someone know what changed and what the meaning is of the assert in msvcr80d.dll!signal Johnny     ...Show All

  • Chip Moody Problem overloading and using ostream operator << for my own classes

    I have several problems to declare, define, and use the following operator in many .cpp files : std::ostream & operator << (std::ostream &, const MyClassA &); I succeed to declare and define this operator for my class MyClassA, defined in MyClassA.cpp. I declared my class as following :    // MyClassA.h    class MyClassA;    std::ostream & operator << (std::ostream &, c ...Show All

  • jjohnson [ATL] does ATL has any collection tool lik CMap in MFC?

    like the title... I thought those containers were merged in VC2005 Anyhow, CMap and the MFC containers are rubbish. The container you want to use is std::map, which, unlike CMap, is part of the C++ language. http://www.sgi.com/tech/stl/Map.html oh, strange... i will try again later, thx! You cannot use CComBSTR with STL collections, because CComBSTR overloads the & operator. You need to use the CAdapt class as foll ...Show All

141516171819202122232425262728293031

©2008 Software Development Network

powered by phorum