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

Software Development Network >> Visual C++

Visual C++

New Question

add class - cannot add mfc and atl items
VS 2005 B2 getting exe files to work on other computers
Array Input information
IntelliSense works intermittently
compiler options are inconsistent.
SetWindowLong with Class Member function
AFX_MANAGE_STATE To load DLL Resources screws up resolving of Parent hWnd
Label text setting in MSVC++.NET
How do I distribute Visual Studio 2005 apps?
implementaion of unwinding

Top Answerers

alsanal
K.M.PONG
Pavan C
Animine
Quang Lao
has2nk
Suzanne
icnagy
CM De Vries
Xerxes
Language Comparison
Only Title

Answer Questions

  • Niranjan Arikela Trying to learn C++ - but some things just dont make sense....

    Hi Folks, I am trying to learn C++ but some things just dont make sense. For example I am looking at a tutorial on OpenGL at http://nehe.gamedev.net/data/lessons/lesson.asp lesson=13 Now he calls a function with: glPrint("Active OpenGL Text With NeHe - %7.2f", cnt1); // Print GL Text To The Screen It passes two arguments to glPrint - the string and whatever cnt1 is. What I find weird is that glPrint doesnt actually do anyth ...Show All

  • tequila63 Cannot create project WTL7.5 wizard in VC++ 2005 express

    I downloaded a copy of  the latest WTL from sourceforge, and followed the readme.html, trying to create a project wizard for WTL. But the wizard just wouldn't show up. Is it a a bug of VC Express or is it just not supported Thanks. With VC Express 2005, there may be a way to leverage or use the ATL code that comes with the Platform SDK.  ATL is included for the Platform SDK for 64 bit development, b ...Show All

  • stephan mantler manifest missing DLL - recurrent problem

    Hello, It occured before and vanished .. when i copied the DLL to windows\system32 folder I created a win32 console application my Mytest.exe.intermediate.manifest is pasted below ------------------------------------------------------------------------------- < xml version='1.0' encoding='UTF-8' standalone='yes' > <assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>   <dependency>     ...Show All

  • Shenry Circular Buffer using CEdit (MFC)

    I would like to implement a buffer that will only display log messages for the last 1000 lines using CEdit textbox. I have currently implemented this by using a long list of CString and everything a new line comes in I add it to the tail of list, and remove one from the head. Then the list of Cstring is combined and result is displayed in the CEdit text box using SetWindowText. The problem is that if the number of lines for log messages is la ...Show All

  • cbnicholson VS2005 and function GetProcessMemoryInfo

    Hello All, I had some old code that ran perfectly in VS 6.0 and used the function GetProcessMemoryInfo located in psapi.h and paspi.lib. This was on a 32 bit machine. I have a new computer which has the EM64T technology from intel. I have installed win XP 64 bit and VS 2005 Beta Version on this machine. I am trying to get my application to complie and run as a 64 bit application. The rest of the code complies and links just fine. However, the ...Show All

  • skumarpraveen how do I retrieve my own IP address in MFC

    in MFC, what function do I need to call to retrieve the IP address that is currently active (e.g. used by internet explorer)   Do I get this from the registry thanks in advance!     You might have mor IP addresses. To get a list of all you can use GetIpAddrTable http://msdn.microsoft.com/library/en-us/iphlp/iphlp/getipaddrtable.asp Also this is OT here I recommend you to use ...Show All

  • P.D. 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

  • VeePee massive compile time errors in stadrard header files

    I just installed Visual Studio 2005 Professional Edition Dec 2005 Disk 3070 DVD. It came with a subscription. It wiped out .NET Framework 2.0, previous betas of all sorts, etc. Now I am at a clean slate. I made a batch file with a command line which seems to work fine-- in the first approximation shall I say Here it is CL /nologo /W3 /Gm /EHsc /Zi /Od /D "WIN32" /D "FDEBUG" /D "_CONSOLE" /Tp%ProjDir%\SockeCPlt6.cpp /Fp"makingfile.pch /YX /Fo"D ...Show All

  • Mandeep where to start

    Hello I have past C# experience but I've really wanted to move to C++ .NET 2005. Does anyone have any recommendations of books or tutorials. Preferably tutorials and books directly related to C++.NET 2005. Thanks Pro Visual C++/CLI and the .NET 2.0 Platform is a good book for learning the C++/CLI language. Take a look at: http://www.amazon.com/gp/product/1590596404/103-0555318-8317457 v=glance&n=283155 Thanks, Ayman ...Show All

  • Absolute_Zero When I build, I get no exe

    Ok when I build my project, I get no exe, but I do get a build log, and other files. Any clue I get no errors, a few warnings...This code already compiled as an exe for someone else under 2003 .net, but when I convert it to 05 and build it, i get no exe Edit: The files I get are buildlog.htm, the exe.intermediate.manifest file, the object file, resource script, vc80.idb, and mt.dep ...Show All

  • DhawalMehta Embedding an edit control into a tab control

    I want to embed four different edit controls into four different tabs. How do I do that The best thing to do would be to set a breakpoint in the debugger and see whether it's called twice. I'm sure it is. In fact I've heard sporadic reports of this happening in the past (OnIntialUpdate called twice for CFormView). One way around this is to use some kind of class member "flag" e.g. bool m_bHasBeen ...Show All

  • tehmann dll hell ???

    Am unable to compile anything with Visual C++ Express. Installation carried out 'to the book', including using 'Install cleanup'. First error message is "This project is out of date". Building the project , gives error code 1073741511, which I believe is 'file not found'. Profiling with 'Dependency Walker'Yields the following: Started "c:\program files\microsoft visual studio 8\vc\bin\CL.EXE" (process 0xECC) at add ...Show All

  • Minaz Shaikh How to pass argumetns to main from the VC++ IDE

    Hello, I know how to pass arguments to main() from the command line. But, I am not sure how to pass the arguments to main() if I want to run from the VC++ IDE. The following is a sample code that I am referring to: #include <iostream> using namespace std; int main( int argc, char * argv[]) { cout<<argv[1]<<endl; cout<<argv[2]<<endl; cin.get(); return 0; }   ...Show All

  • Mr PoPoP Datasets, datarows oh my

    Good evening experts: Would you happen to have any online reference material, perhaps an article or coding sample, that provides the general idea of working with datasets in vc++ 2005 I've found numerous examples with 2003, but it appears that the syntax has changed so those examples are working. Unfortunately, C++ (especially managed C++ and C++/CLI) seem to have the status of "illegitimate child ...Show All

  • Il-Sung Lee - MSFT C++/CLI, Strings and switch()

    Under C# it is possible to feed strings to the switch() statement and its cases, this doesn't seem to work in C++/CLI. Is there a way to make it work, which I don't know about, or don't I get around chaining if-statements Thanks. Sorry when I said ' you could probably do the same in C++/CLI', I meant you achieve the effect by using a Hashtable or if statements. The C# compiler actually converts the sw ...Show All

525354555657585960616263646566676869

©2008 Software Development Network

powered by phorum