Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / Languages / VC9.0

VC9.0

VC9.0

Great Reads

by ZhaoRuFei
This article provides a macro + template solution to support .NET-like Reflection for enums such as ToString, IsDefined, Parse, GetValues, GetNames.
by Ivan Shcherbakov
The article describes 10 time-saving debugging techniques available in Visual Studio.
by Nitin K. Kawale
3D Vector Graphics class.
by ThatsAlok
Collection of Q&A from VC++ forum

Latest Articles

by ZhaoRuFei
This article provides a macro + template solution to support .NET-like Reflection for enums such as ToString, IsDefined, Parse, GetValues, GetNames.
by Ivan Shcherbakov
The article describes 10 time-saving debugging techniques available in Visual Studio.
by Nitin K. Kawale
3D Vector Graphics class.
by ThatsAlok
Collection of Q&A from VC++ forum

All Articles

Sort by Score

VC9.0 

by Nitin K. Kawale
3D Vector Graphics class.
by Amit Deshmukh 1010
Accessing class object present in exe from explicitly loaded DLL using Inheritance and virtual function.
by gintack
C++ header file to plot data in the form of x, y, z arrays and list as potential lines and graphs
by Shao Voon Wong
C++: Prefer Curiously Recurring Template Pattern (CRTP) to Template Pattern
by Ștefan-Mihai MOGA
How to center window in WIN32
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);}
by Nick Kulikovsky
There is ATL CWindow method CenterWindow:void CenterWnd(HWND hWnd){ CWindow wnd; wnd.Attach(hWnd); wnd.CenterWindow(NULL); wnd.Detach();}
by Binu MD
Change the default ICON of MFC applications
by Charles Oppermann
How to check Windows 7 version in Visual C++
by Sayyed Mostafa Hashemi
Code for checking the avilabiltiy of Internet connection.
by Arkadiusz@inquiry
CRichEditCtrl does not take the return
by Junaij
Timing code using debugger
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...
by Ștefan-Mihai MOGA
How to find a substring in a text, forward and backward, with Case Sensitive and Match Whole Word options.
by MaxMax14
Keep the items highlighted when focus is on another control
by Orjan Westin
Simple function to get the text message corresponding to a system error.
by Debdatta Basu
Emulating iterative structures with the C++ pre-processor.
by Orjan Westin
Reading an input of any type, or simply enter, from the command line
by Adamanteus
Intercepting SEH exceptions in C++ program
by DigitalInBlue
Guidance on C++/C++!1 Parameter Passing
by Jake Franta
SolidWidgets Grid tutorial.
by sunhui
In this paper, we will discuss some advanced skills for ATL COM development.
by xdoukas
A tip on the implementation of Unix ucontext_t operations on Microsoft Windows.
by trident99
An STL based simple XML serialization and de-serialization engine