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

Software Development Network >> Visual C++

Visual C++

New Question

C++/CIL exe, seemless integration with a C# dll?
MFC displays XP visual style only when VS2005 installed
unhandled exception in [my app.exe] NTDLL.DLL 0xC0000005: access violation
Does Anyone Know Some Good Online Tutorials For...
Intellisense don't show the list of functions...
simple error c2664
Project creation failed?!
LNK2022: metadata operation failed (8013118D) : Inconsistent layout information in duplicated types (ATL.CRegObject)(0x020002ac)
Image Color Management in VC++ 8 Platform SDK
Can't link a managed wrapper (mixed managed/native) assembly to a static lib???

Top Answerers

pink_flower4love
Terry Showers
Sara Stanford
Onega
NickG
Sean Kinsey
Jeff Bogdan
Khamul
Anandan
Vantskruv
The Journal Pioneer: News
Only Title

Answer Questions

  • Otis Mukinfus VC 6.0 Debug-Additional DLLs: equivalent in VC 2005?

    In VC 6, under project settings, Debug, there exists a section under Category: Additional DLLs.  This is where you specify additional DLL symbols to be loaded before the process is debugged.  When debugging an EXE without symbols, such as REGSVR32.EXE, i.e. open the EXE up as a solution, and then start debugging, I need to specify additional DLLs such as the DLL that I'm trying to register, so I can debug a registration problem.  ...Show All

  • GaryGary vc++8.0 bug: access violation upon call of any CImageList methods

    I have sucessfully imported and compiled a complex MFC 6.0 project from vc++6.0  into vc++ 8.0 (MFC 8.0). It contains several subprojects (libs and dlls). In vc++ 6.0 those project linked MFC6.0 statically and after I imported it to vc++ 8.0 I set the linkage of MFC8.0 to "shared". However when I try to compile and link the project in vc++ 8.0 in release mode (debugmode works fine) I get an acess violation in afxcomctl32.inl. This happnes w ...Show All

  • Efren Problem seeing my window

    I just got Visual Studio 2005 and I tried to make a program using Win32. The program is just displaying a window. When I compile the code I get no errors at all, but nothing happens after that. My window doesn't pop up. I made sure that I had the functions: ShowWindow() and UpdateWindow, but apparently that wasn't the problem. Please help. nicksmaddog wrote: How do I do that I have never had to do ...Show All

  • davidelloyd Manifests in VS2005-- What are they?

    In my experience, manifest files have enabled the Windows XP control themes in applications. That is all I know about them. Can anyone explain what manifests are, and how they are used I also noticed that Visual Studio 2005 Professional supports embedding manifest files. Does this mean the IDE is capable of automatically making applications support Windows XP control themes Thanks ahead of time. I tried with ...Show All

  • Jeff Wharton VS 2005

    Hello, I know many people will consider this question to be noobish, but I have with it problem so I have to ask. I used to work in VS 6, and made some projects(simple 2D games) last summer in it. Now I am trying to get to know a bit of DirectX 9. And here is the problem - I want to create win32 project, but without stdafx file - do not really know what it is for and I do not need it. Anyway, I can create a project by selecting EMPTY PR ...Show All

  • AravindManohar Getting rid of the need for .manifests?

    Background: We are attempting to build a DLL with VC8 to be used by applications that were built with VC6 and linked against a VC6 version of the DLL. Problem: In order to get the application to start, we have to copy the .manifest generated by building the DLL and rename it app .exe.manifest (in the same directory as app ). This is going to be a headache for our customers. Is there any way to not require the .manifest ...Show All

  • kevingpo setting compiler options programmatically.

    I am trying to simplify my life and set up all compiler options programmatically in a single file where I will see what is going on. I created a .cpp file and copied an MSDN function in there that is supposed to do it. My intention is to call this function eventually from the main routine. So far all attempts to compile the file failed with the errors described below. First the code: using namespace System; using namespace System::Object; using ...Show All

  • Blizzard Problem with decimals

    I'm a student and am taking a C++ class.  I am just learning so when another student came to me with question I didn't know how to answer it and neither did the teacher.  Basically the student tried to get the modulus with out using the mod funtion. Here's the code: int w = 0; int n = 23; int d = 5; double x = 0; cout.setf(ios::scientific); w = n/d; x = n/ static_cast < double >(d)-w; n=x*d; when run 'n' comes out to be ...Show All

  • Marty_M About the extension of properties file

    Hi All, I am a beginner in VC++ and I would like to ask a question here. As I had migrated a VC++ project from VC6 to VC7. The program can be built successfully but the program fails to execute. The logic of the program requires to load a properties file and perform some library initialization. (e.g. abc.properties). The program fails to run because the program has some memory allocation problem when I execute it in debug mode. However, when ...Show All

  • Asghar Panahy dialogs appearing behind the main window

    hey guys, i have a simple problem with my MFC app. the messagebox's and color dialod's r appearing behind the main window. maybe is it because i have directx rendering a static text control in the main window so it always stays in focus or soemthing i dont know here is my code for displaying for displaying a color dialog: CColorDialog cd = CColorDialog(0, CC_ANYCOLOR); cd.DoModal(); when i press the alt button the color dialog appears. is ther ...Show All

  • NewDeveloper83291 Error including queue.h

    When I include queue.h I get the following compiler errors in list.h c:\program files\microsoft visual studio\vc98\include\list.h(37) : error C2146: syntax error : missing ';' before identifier 'Length' c:\program files\microsoft visual studio\vc98\include\list.h(37) : error C2501: 'DWORD' : missing storage-class or type specifiers c:\program files\microsoft visual studio\vc98\include\list.h(37) : error C2501: 'Length' : missing storage-class or ...Show All

  • Dundappa Kamate _CrtIsValidHeapPointer fails on globally created object within a static llibrary

    Hello, I have a very simple class in a static library which instantiates a global object of it. Following is a piece of the header. class MyBoard { public : MyBoard(std::string net_id); ~MyBoard(){} std::string NetworkId(); void NetworkId(std::string net_id); private : std::string NetId; }; Then on the CPP file I have the following: MyBoard::MyBoard(std::string net_id) : NetId(net_id) { ...Show All

  • Florin Lazar How do I? Complete Newby.

    I've got following problem. I'm working with Visual Studio .NET and I need to populate my typed DataSet object with some data. It's a table, which is stored in a simple text file. But the number of columns is not defined (can vary from 5-10), so I have to create a new DataColumn object dynamically, as I read the column from the file stream. I have no idea, how to do this. I'm really sorry, if I'm wrong here. It seems, that this foru ...Show All

  • John Kamp c++ program wont start

    Hi i developed my program in win XP with SP2 i use this functions: mciSendString mciGetErrorString i #include this : #include "stdafx.h" #include <windows.h> #include <iostream> #include <string> #include <mmsystem.h> #include <Commdlg.h> #include <fstream> project .LIBs : WinMm.lib ComDlg32.lib and when i ...Show All

  • ebaklund VC++/MFC 8 not stable

    Hey, I am affriad to say MFC 8 that comes with VS 2005 isnt stable at all. im working in a studio trying to work on a project, and i keep on wasting time on worthless issues. All of which have to do with pointers and the new operator. Latest issue is it will declare thepointer if i told it to load configuration from a file. but it wont declare it if i decide to load the configuration manually, i really dont know what difference does it make. im ...Show All

666768697071727374757677787980818283

©2008 Software Development Network

powered by phorum