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

Software Development Network >> Visual C++

Visual C++

New Question

linker error with glut
Any way to get a list of QFEs available?
Deploying my .NET app (started as MFC program)... HELP!!!
Basic ifstream problem
printing data
ifstream::seekg() counts a newline char twice?
/clr Static Libs Possible / linking between mananged and unmanaged
porting expression templates to generics
Microsoft Visual C++ Runtime Library error question
__gc error

Top Answerers

whilstiwait
Michael_DV
Imunevar
Nemanja
amilate
Amshanti
PeterBejo
Anoniem-pje
esjr
David8756
OTEC Consulting Group
Only Title

Answer Questions

  • rmtuckerphx App hogs CPU when mouse pointer moved over it

    My MFC app hogs CPU when the mouse pointer is moved around over it. I'm using task manager to monitor the CPU usage. No othe app seems to do this. If my app has a modal dialog box up then it doesn't happen. The app is built with Visual Studio 2005. My main window is only handling WM_CLOSE, WM_ERASEBKGND, WM_SIZE and WM_SYSCOMMAND (none of which get fired when you just move the mouse pointer around over it). If you get furious with the mouse p ...Show All

  • danparker276 MFC Activex Control - Failed to create control: Unspecified error

    Hello,    I have created an activex control in MFC 8, VS - 2005 Beta 2,    which hosts Windows Forms control in it.  I have created it as per the article by Nicola (MFC 8 (VC++ 2005 and Windows Forms).  When I test using the activex tester I get the message - Failed to create control: Unspecified error.  When I refered this object in a html page using the object tag -  It does not show ...Show All

  • PredragB LNK problems continued

    Hard life in C++ lane, I'll tell you. Trying to compile code with unmanaged CAsyncSocket class I got LNK errors: Build Log     Build started: Project: SocketCplus4, Configuration: Release|Win32 Command Lines      Creating temporary file "c:\Documents and Settings\....\My Documents\Visual Studio 2005\Projects\SocketCplus4\SocketCplus4\Release\RSP00000E1064772.rsp" with contents [/OUT:"Release\SocketC ...Show All

  • maige VC++ 2005 - devenv.exe continuously reading the referenced assemblies

    Note: This post was originally posted here, but someone moved it to the CLR forum. I reposted it here, because this issue only happens when using Visual C++ 2005 (Windows Forms app or even CLR console app). -- Jason Pursell --- Is this a bug or by design My question concerns Visual C++ 2005 Apps (.NET only: Windows Forms Applications, Console apps, etc.) Description: After creating a new Visual C++ 2005 CLR application (Wi ...Show All

  • ThE_lOtUs very dissappointed with visual c++ 2005

    I was astonished on how c++ gained so much added bulk... PLZ... VC++ 2005 is anything but iso C++ compatible... "99.9% iso c++ compatible"... it has like 30 extra keywords that shouldn't be there in the first place...  Looks like I will have to go with either c# or start getting to be friends with an old pal called GCC. This is just a feature request.   TOMDX wrote:   TOMD ...Show All

  • ronmac Where is C99 round function?

    First, I post this question to Visual C++ Language but it seems it's OT there, so I repost it here as it relates to VC++ 8.0 libraries Hi, It may seem to be extremely trivial quesion, but I completely have no idea why I can not find round function in math.h I use VC++ 8.0 so I suppose it brings very up to date C/C++ librareries. round function was added in C99: http://www.dinkumware.com/manuals/reader.aspx b=c/&h=math.html#roun ...Show All

  • Daniel Rieck wcsstr with a const return type in rc1 header

    Hi 40th Floor! > _CRTIMP __checkReturn _CONST_RETURN wchar_t * __cdecl wcsstr(__in_z > const wchar_t * _Str, __in_z const wchar_t * _SubStr); > > What's the deal with the "const" on the return in > > ...\Microsoft Visual Studio 8\VC\include\string.h > > when the docs I see show > > *wchar_t *wcsstr( const wchar_t* */_string_/, *const* *wchar_t* > */_strCharSet_/ *);* It seems that the docs (or the standard) are wrong :-) ...Show All

  • Coyote13 C/C++

    Hello everyone, I'm an "old timer", because I started learning computer languages in 1974 (!) on a VAX system. (Basic, Fortran IV, Fortran 77, Pascal, Assembler, Cobol, C, C++, ...) My preferences are for C++ (still do) programing, but because of my professional duties, I stopped programing since 1988. Now I'm "semi-retired" and would like to restart using C/C++ but... What should I decide to buy, I mean, what kind of language to start with Vis ...Show All

  • Agalab August CTP

    I arrived late to this party starting with the July Professional CTP from MSDN 4 weeks ago. In that time I've found and reported 3 significant bugs. I've been waiting for the August CTP to kick its wheels but now I find that it's by "invitation" only. Given that I'm actively participating in this beta trial - how do I get an "invitation". Alan Thanks, but I need the Professional version. ...Show All

  • !Carlo! How to make crtdbg.h and new(std::nothrow) work

    Hi. I've been using the crtdbg functions for a while to find memory leaks, and it works great when I use the following preprocessor statements. #ifdef _DEBUG #define _CRTDBG_MAP_ALLOC #include <crtdbg.h> #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__ ) #define new DEBUG_NEW #endif As you'll know, this way the crtdbg functions show the correct file and line where the memory of the leak was reserved, using the "new" operat ...Show All

  • Scott Gurvey How to remove files

    Hi, again, I am a newbie to the programming and I need your help! Well, I am just trying to learn the language for my hobby and free time. But I need to get help to this.... I tried the Remove command like: for Delete32.cpp: _________________________________ // remove example: remove myfile.txt// #include <stdafx.h> int main () { if ( remove( "myfile.txt" ) == -1 ) perror( "error deleting file" ); else puts( "File successfully deleted" ...Show All

  • chanmy8 Compiling FilmBox SDK Under VC6

    Hi, I am trying to compile Filmbox's SDK using VC6.  I can compile under VC7, but I only have a temp version, and do not want to port over to VC7.  The problem I am getting is on the following section of code: /***********************************************************************  CLASS KStaticArray ************************************************************************/ template< class Type > class KBaseStaticArray { & ...Show All

  • r.cicca developing windows service using MFC

    Hi all I have a project where user will send the simulations to remote PC in the network for running the simulation in distributed fashion. Now i want to implement this as service. There are few question which i m not able to get 1. How does a user interact with service. My user interface will be a MFC based GUI.For example if user press send, then service will get the file name from the gui and send it to some pc in network and then wait ...Show All

  • ElChairo I got this error when compiling "Error c2784"

    Hi everyone, Can someone help me with my program I've been working on it for awhile and still cant get it to work. Here's the listing: #pragma warning (disable : 4786) //disable warning about truncation of string data #include <iostream> #include <fstream> #include <string> #include <set> #include "masterheader.h" using namespace std; //type definitions typedef multiset <MasterHeader> typeMH; ...Show All

  • E Coloney Unable to build in 'Debug' mode

    Hello, I am trying to port a application from VC-6 to Visual Studio-2005. Though I am able to build in release mode, it is failing to build in debug mode. Following error is thrown. C:\Program Files\Microsoft Visual Studio 8\VC\include\strstream(139) : error C2061: syntax error : identifier '_DebugHeapTag_func' Can any one help me to fix this error Thanks Hi, I'm trying to build a C++ project upgraded to V ...Show All

99012345678910111213141516

©2008 Software Development Network

powered by phorum