Software Development Network Logo
  • Windows Vista
  • Visual C++
  • .NET Development
  • Windows Forms
  • VS Express Editions
  • Visual Studio
  • Visual C#
  • Architecture
  • Microsoft ISV
  • SQL Server
  • Windows Live
  • Visual Basic
  • Game Technologies
  • Visual J#
  • Visual FoxPro

Software Development Network >> Visual C++

Visual C++

New Question

controlling user input
How to get the text from MSWord?
importing VB.net dll (controls) into C++ .net
Char to char
Error including queue.h
Resource Editor: Add/Remove Operation impossible code read only - Release VS2005
LPCTSTR
Compile error C2146 & C4430 when including DShow.h
Broken _findfirst() when using PSDK and VS2005 Beta2 under AMD64
fatal error C1001: An internal error has occurred in the compiler. (Release Mode Only)

Top Answerers

ShinjiFei
Tim Reid
shav
RustyBubble
arfried
gppradeep
PAQUOT
TonyRusin
Scott Frenkiel
Santiago Cepas Lopez
gnome-mlview
Only Title

Answer Questions

  • astanley Poly-Threaded C++ Applications

    I have a few programs that I am converting to be threaded. At present I have a couple of programs, computer chess engines, that are threaded and work fine with Microsoft's C++ compilers. When the SMP.H #define's detect _WIN32 || _WIN64 it calls up process.h functions but on other platforms it need to use a bit map in ASM to manage the threads properly. Other considerations include inter-process communications etc. If threads dont need t ...Show All

  • Giselle difference between value type and ref type (C++ CLI)

    Hi all, I'm programming with C++/CLI and I'm not sure of this concepts. I hope you can make it clearer for me. What exactly are value type, using the value keywork What exactly are ref type, using the ref keywork And specially, What are the difference between the two Thanks a lot in advance for you help. Best, Nicolas Thank you for all your answer. I will use this types more efficiently now Take care about ...Show All

  • Jay B. Harlow VCMAME: compiles with VC2003, fails with VC2005

    I'm trying to build the MAME source using Visual C++ 2005. I'm using the VCMAME project files from http://www.vcmame.net/ . I first built the project in Visual Studio 2003, then opened the project in VC++ 2005 and rebuilt. I only had to make a few modifications to the project, like adding _CRT_SECURE_NO_DEPRECATE to silence a bunch of warnings. However, one of the source files (winalloc.c) implements their own memory handling functions so ...Show All

  • Daniel Marley - MSFT Works in 2003 but not in 2005

    I am trying to get some code to work in 2005 that is working in 2003 and VC6 and I am getting the following errors when I use templates. 1st error: error C2664: 'std::_Vector_iterator<_Ty,_Alloc> std::vector<_Ty>::erase(std::_Vector_iterator<_Ty,_Alloc>)' : cannot convert parameter 1 from 'std::basic_string<_Elem,_Traits,_Ax> *' to 'std::_Vector_iterator<_Ty,_Alloc>' with [ _Ty=std::wstring, _Alloc=std:: ...Show All

  • szkeller MS C++ 2005 express database mismatch error when compiling

    Every time that I attempt to compile a c++ program I get a database mismatch error. When I looked this error up in the included documents, it said that I needed a newer version of dbi.dll. Where can I find this file I know that my programs work because they compile with ms vc++ 6.0 and the gcc complier. Here is the artilce where it told me "how to fix it," but I still cannot find the file that I need. Visual C++ Conc ...Show All

  • LogixLink How to install a Debugger Visualizer for a C++ object in Visual Studio 2005?

    How to install a Debugger Visualizer for a C++ object in Visual Studio 2005 I could happily and successfully follow the tutorial for creating a Debugger Visualizer in Visual Studio 2005 Beta 2 in C#. But there was no information about creating such in C++. How to do it What I mean by creating such in C++ is having an object in a C++ application visualised by a Debugger Visualizer (written in any language). Besides, I'm sure i ...Show All

  • RonDesta New to VC++, can't really get started...

    I'm a C programmer and I just installed VC++, created a new project called test1, and started typing in code.  I decided to make a real simple program that has some input and output so I can see how VC++ works but after I create my project and type in my code, I do not know where to go from there.  I decided to debug since that is the first thing I do with all my other compilers, then compile and build but it cannot find test1.exe ...Show All

  • Ahmad Ariff Baharudin how to declares a class type?

    In msdn, the explain of the class keyword is: The class keyword declares a class type or defines an object of a class type. class [ tag [ : base-list ]] {     member-list } [ declarators ] ; [ class ] tag declarators ; The elements of a class definition are as follows: tag Names the class type. The tag becomes a reserved word within the scope of the class.   i want to know how to ...Show All

  • Frode Sorhoy A pile of errors in winnt.h when compiling

    Hi! This is what I tried to do. I tried to compile some of the samples provided with Microsoft DirectX SDK. When compiling the samples I always get the same error result. In total i get around 20-40 errors of this kind when compiling a sample. c:\program files\microsoft platform sdk for windows server 2003 r2\include\winnt.h(222) : error C2146: syntax error : missing ';' before identifier 'PVOID64' c:\program files\microsoft ...Show All

  • alden MFC project with WinXP style menus and toolbars?

    Hi. I asked this in a previous reply already, but the subject changed, and I wanted more people to see it. In VS2005, is it possible to create an MFC application that uses the WinXP sytle menus and toolbars   What I would like is the steps to create a new MFC project that when I build and run it, it displays with the same "look" as a VS2005 forms application. I've been directed to use the manifest through which I can make other MFC ...Show All

  • DTHMTLGOD how to compile c++ code to a DLL?

    I'm using visual c++ 2005, I have written a window form component class, how can I compile it to a DLL, so that I can use it in window form applications Here is where you can find general info on how to create DLLs, http://msdn.microsoft.com/library/default.asp url=/library/en-us/vccore/html/_core_.2f.dll.asp If the issues is specific to winforms, then the winforms forums might be able to help. Thanks, Ayman Shoukry VC++ Team ...Show All

  • madpower2000 Strange error with _fileno

    We're in the process of converting from visual studio 98 to 2005 (yes, we were a bit behind the times). Most of the changes are now dealt with, but there's one weird one that we can't figure out - it looks like a bug in the compiler. Here's the error we get: v:\frame\utils\.\preftext.c(104) : warning C4996: '_fileno' was declared deprecated C:\MSDev05\VC\include\stdio.h(219) : see declaration of '_fileno' Message: 'The POSIX name for th ...Show All

  • ChampAmp Standard Conversions

    This code in Visual Studio.NET 2005: int x(1.5); //Warning: truncation and possible loss of data int y(x); //OK int z = int (1.5); //OK Why is int(1.5) OK I thought the int(1.5) was the "constructor form" for initializing variables so that int x(1.5) and int z = int(1.5) are equivalent. That is, I should get warnings on both lines of code because in both cases an int is built from 1.5, which is al ...Show All

  • c&amp;#35; crack error C2365 while compiling the code on .NET

    Hi All, I am trying to compile some code against a baseline that is compiled againast .NET. However, I am getting the following error (hundreds of similar errors), which seems to be some error with redefinition. Seems to me that I shd use some different flag for compiling the code. Any help is appereciated. Thanks, Ashish %CL_CMD% /c /GF /EHa /D_WIN32_WINNT#0x0500 /DWINVER#0x0500 /D_WIN32_IE#0x0600 /MDd /D_X86_#1 /DWIN32 /GB /D__PERL /DOMNIWORK ...Show All

  • Muzammil Baig AMD 64 Optron and Manifest

    When I add manifest to my application it does not work on AMD Optron 64 Biit platform. But the same application when built without Manifest works fine. I am a little puzzled wether Manifest has any special mechanism of deployment on AMD optron 64 bit machine. on a different machine with no VC8 installation. We have provided the VS 8.0 Runtime though! In the application manifest, there is an element named <assemblyIdentity> whi ...Show All

456789101112131415161718192021

©2008 Software Development Network

powered by phorum