Click here to Skip to main content
15,884,388 members
Everything / Programming Languages / Visual C++ 9.0

Visual C++ 9.0

VC9.0

Great Reads

by logicchild
An article that explains how to use this library
by SBJ
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture
by Ernest Laurentin
Full-fledged ATL Windowless ActiveX Container. Ideal for hosting Windows Media Player, Transparent Flash and Silverlight Animations.
by Michael Dunn
Create custom tasks in your app's jump list on Windows 7

Latest Articles

by QxOrm
QxOrm C++ library: Persistence (based on QtSql Qt library) - Serialization (based on boost::serialization library) - Reflection (introspection)
by libbyliugang
A splitter control for dialog can auto change the linked window's position
by gintack
C++ header file to plot data in the form of x, y, z arrays and list as potential lines and graphs
by Ravimal Bandara
An implementation of Bag-Of-Feature descriptor based on SIFT features using OpenCV and C++ for content based image retrieval applications.

All Articles

Sort by Score

Visual C++ 9.0 

29 Jul 2011 by Sayyed Mostafa Hashemi
Code for checking the avilabiltiy of Internet connection.
4 Oct 2011 by Nick Kulikovsky
There is ATL CWindow method CenterWindow:void CenterWnd(HWND hWnd){ CWindow wnd; wnd.Attach(hWnd); wnd.CenterWindow(NULL); wnd.Detach();}
17 Jul 2012 by Jake Franta
19 May 2013 by Amit Deshmukh 1010
Accessing class object present in exe from explicitly loaded DLL using Inheritance and virtual function.
23 Mar 2014 by DigitalInBlue
Guidance on C++/C++!1 Parameter Passing
19 Oct 2012 by Orjan Westin
Simple function to get the text message corresponding to a system error.
27 Jan 2011 by Junaij
Timing code using debugger
2 Oct 2011 by Ștefan-Mihai MOGA
How to center window in WIN32
6 Feb 2014 by Adamanteus
Intercepting SEH exceptions in C++ program
26 Oct 2016 by Shao Voon Wong
C++: Prefer Curiously Recurring Template Pattern (CRTP) to Template Pattern
29 May 2012 by Nitin K. Kawale
3D Vector Graphics class.
15 Nov 2013 by Orjan Westin
Reading an input of any type, or simply enter, from the command line
19 Jun 2012 by Binu MD
Change the default ICON of MFC applications
2 Feb 2016 by MaxMax14
Keep the items highlighted when focus is on another control
2 Aug 2011 by Charles Oppermann
How to check Windows 7 version in Visual C++
19 Nov 2012 by Debdatta Basu
Emulating iterative structures with the C++ pre-processor.
6 May 2013 by trident99
An STL based simple XML serialization and de-serialization engine
9 Apr 2018 by gintack
C++ header file to plot data in the form of x, y, z arrays and list as potential lines and graphs
16 Mar 2015 by sunhui
In this paper, we will discuss some advanced skills for ATL COM development.
23 Sep 2011 by Charles Kludge
void CenterWnd(HWND wnd){ RECT r,r1; GetWindowRect(wnd,&r); GetWindowRect(GetDesktopWindow(),&r1); MoveWindow(wnd,((r1.right-r1.left)-(r.right-r.left))/2, ((r1.bottom-r1.top)-(r.bottom-r.top))/2, (r.right-r.left), (r.bottom-r.top),0);}
31 Jan 2011 by LaRoy Tymes
Here is a fun program that not only shows how to get precise timings by using the time stamp counter, it also shows how to call main recursively. This is a C program. C++ will not allow calls to main.#include "stdio.h"#include "Windows.h" // Required for Sleep#define CPUID __asm __emit...
7 Mar 2007 by xdoukas
A tip on the implementation of Unix ucontext_t operations on Microsoft Windows.
15 Aug 2011 by Ștefan-Mihai MOGA
How to find a substring in a text, forward and backward, with Case Sensitive and Match Whole Word options.
6 Mar 2014 by Arkadiusz@inquiry
CRichEditCtrl does not take the return