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

Software Development Network >> Visual C++

Visual C++

New Question

change language setting
How to redirect STDIN of CMD.exe in C++ programme?
inline function
Microsoft Visual C++ Runtime Library error question
Linking: libcimtd.lib requested
floating point vector optimization
Singular preprocessor definition needed
Accessing C# Application Configuration from a C++ Class Library
Rebuild using shared precompiled headers doesn't work
Working with Threads

Top Answerers

HenrikB
vbdr
SnowGrassland
kit thambiratnam
kd4gar
karnayanar
AlinaMaria
swtjen01
Ian Bavey - MSFT
Yury_A
IT L枚sungen Dipl.-Inform. Frederic J. Walter-Scheerer
Only Title

Answer Questions

  • bill_chapin newbie vsn 2003. Need help with Win32 console wizard for nightschool.

    I am trying to create a win32 console application.  I run the wizard using the defaults and it creates the project but returns with "Object doesn't support this property or method".  I can enter a c program and compile it but if I try to run or debug it, the program comes back with "Unable to start debugging  unable to start .exe, the system cannot find the path specified". It appears as if it can't generate an .exe but it can mak ...Show All

  • lochew Migrating MFC application from Visual Studio 6.0 to Visual Studio 7.0

    Hi, We are migrating MFC application from Visual Studio 6.0 to Visual Studio 7.0. We do not have any mangaed code. Just we are compiling the c++/MFC code with .net compiler by using Visual Studio.net 2003. Do we need .net framework to run the applciation. If so what is the need for .net framework, though we are not using any managed code!. Thanks, Ram. Check out http://forums.microsoft.com/MSDN/Sh ...Show All

  • VegasKristy help on API's

    Hi guys, is there a forum for discussing win API's especially waveform audio API's or can I ask questions here Thanks much! Use http://msdn.microsoft.com/newsgroups/topic.aspx url=/MSDN-FILES/028/201/015/topic.xml Thanks, Ayman Shoukry VC++ Team ...Show All

  • RandyTM unable to edit command line for a project

    Trying to compile and execute a C++ project in VS2005 I ran into a linker problem. After some investigation it turned out that the calling convention was not what it was supposed to be for the functions used in the program. I changed the option for the calling convention from /Gd to /Gz. I needed __stdcall to be made. After that I got this error message: Error 1 Command line error D8016 : '/clr:pure' and '/Gz' command-line options are ...Show All

  • J. Ho Fundamental question about creating Satellite Assemblies Project

    Hi , I want to do similar project as :     http://msdn.microsoft.com/library/default.asp url=/library/en-us/dv_vjsample/html/vjsamlocalizedhelloworldsamplesatelliteassembliesforconsoleapplications.asp but I do not know how to add to my solution 'Resources C++ Utility Project'. Thank you. I would advise you to take a look at the following links: http://msdn2.microsoft.com/en-us/library/f45fce5x http://msdn.microsoft. ...Show All

  • Bill Kinney cannot convert parameter 1 from 'wchar_t' to 'const void

    Hello Everyone, I have a code which was written in WIN 32 and I upgraded it to .NET everything went fine, except this passing of parameters .. the function looks something like this... sha_hash( const void * data_ptr, /* data to be hashed */ int data_length, void * buffer_ptr, /* hash buffer ( 20 bytes ) */ int buffer_length = SHA_HASH_LENGTH, void * prefix_ptr = NULL, /* for hmac */ int prefix_leng ...Show All

  • Oliver On adjacent ">"s in a parameterized declaration

    Hello, There is a syntax erron in the following code -- adjacent ">"s need a delimiter (it is marked AAAA) template <class T> class A {}; template <class T> class B {}; int main() { A<B<int>>(); // AAAA } But VC8 can compile it. It seems to be a error but on the other hand Mr. Stroustrup have being dreaming on such a syntax for ages and he promotes it pretty vigorously now, as far as know. So, I a ...Show All

  • Brendan Egan Converting strings to numbers

    Sorry for the total newbie question, but it's midnight and my poor brain  can't find the answer to this problem in the online help....   It is easy enough to convert numbers (ints and floats) to a string using String::Format.  How do I go the other way   I have a bunch of numbers given to me by an SQL server in String ^ format.  I need to do math with them.  How do I convert from String to int or float ...Show All

  • Mark Austin Compiling Lib

    Hello there, There is a library program that I am trying to compile using VC++ version 6.   Followed this instructions:   "Here's step-by-step instruction posted by one of the list subscribers: good luck >>> Subject: FW: [Quantlib-users] Installing QuantLib using Dev-C++ 4.9.9.2: WORKING From: "xxxxxx" <xxxxxx>  Add to Address Book To: quantlib-users@lists.sourceforge.net Date: Wed, 13 Jul 2005 12:12:41 +0800 ...Show All

  • Gary Eldridge I'm stuck and cunfused. ARR U C++!

    ok. i made a small ...small SMALL msdos program with Visual C++ express (yep a newbie) and all it was, was a whats ur name age and if u like this kind of music or game. now i figured out the whole press one if u like this or press 2 for no. but i want to make it a says YES FOR YES! and so on. get it good. here's my code. im really stuck #include <iostream> using namespace std; int main() { int number; /* This de ...Show All

  • mg0123 Image Color Management in VC++ 8 Platform SDK

    I'm converting a VC++ 6 MFC app to VC++ 8 using Visual Studio 2005 Standard. The existing app uses Image Color Management, so it #include's icm.h. In the VC++ 6 environment, it is included from the Platform SDK [$(ProgramFiles)Microsoft SDK\include] directory. A Visual Studio .Net installation delivers a version of the Platform SDK in a subdirectory of the VC directory [$(VCInstallDir)PlatformSDK] and this directory is setup to be used for in ...Show All

  • Manthan_Mehta60 Add/Remove impossible...

    VS 2005 Standard/WinXP Home SP2/Limited Account I recently upgraded a VC++/MFC 2003 project to VS 2005. It compiles fine. The problem I have is when I try to add an override (OnNotify) to an existing class using the property pane. I receive the following error: "Add/Remove operation is impossible, because the code element '(null)' is read only." Other overrides/classes in the project produce the same error, but other projects seem to work f ...Show All

  • Valer BOCAN How to do arrays?

    I would like to make a function that takes a 9 by 9 int array as an argument, returns a 9 by 9 int array as an argument, is garbage collected and has a local variable which is a 9 by 9 by 9 bool. what is the correct way to do this is C++.NET This should help you get started: void f(array<int, 2>^ a) {    for (int i = 0; i < 9; ++i) {       for (int j = 0; j < 9; ...Show All

  • Sajid Ali Microsoft Visual C++ Runtime Library error question

    I recieve this error when I launch Internet Explorer - version 6.0 OS Windows XP Home edition 2002 Service Pack 2.  Error is as follows: Microsoft Visual C++ Runtime Library Runtime Error! Program C:\Program Files\Internet explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information. I am not certain where to post this questi ...Show All

  • Moritz Kroll Using tools without installing Visual Studio

    Nikola Dudar has a blog entry that descibes how to build on a system without a complete installation of VS 2005: http://blogs.msdn.com/nikolad/archive/2005/02/09/370299.aspx This works, to a point. I am running into an issue where MIDL keeps crashing processing IDL files. Does anyone know how to fix this Hi, It crashes in what way Thanks. Ronald Laeremans Visual C++ team Th ...Show All

575859606162636465666768697071727374

©2008 Software Development Network

powered by phorum