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

VC10.0

VC10.0

Great Reads

by Ivan Shcherbakov
The article describes 10 time-saving debugging techniques available in Visual Studio.
by Sunil P V
This article is a simple geometry library for drawing lines, circles, arcs, text, etc.
by ThatsAlok
Collection of Q&A from VC++ forum
by ThatsAlok
Collection of Q&A from VC++ forum

Latest Articles

by Ivan Shcherbakov
The article describes 10 time-saving debugging techniques available in Visual Studio.
by Sunil P V
This article is a simple geometry library for drawing lines, circles, arcs, text, etc.
by ThatsAlok
Collection of Q&A from VC++ forum
by ThatsAlok
Collection of Q&A from VC++ forum

All Articles

Sort by Score

VC10.0 

by Mathew_wwx
This tip will introduce a library written in C++ that wraps up a 2d polygon triangulation algorithm with time complexity of O(N*logN), the algorithm works on both self-intersected and non self-intersected polygons.
by Nippey
This is a TCHAR alternative for "A Small Class to Read INI File"
by FranciskaR
Benchmarking Boundary Trace Algorithm against some FloodFill algorithms since they used a stack or recursion
by InActive
How to use the .NET DateTime class in C++ to generate a basic calendar via a console program
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 Sayyed Mostafa Hashemi
How to set/change the master volume.
by matt_taws
Isn't it more easy to just do:return nStatus == NERR_Success
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 Chandra Shekhar Joshi
If you are migrating your COM application to Visual Studio 2012 then this could be helpful for you.
by Arkadiusz@inquiry
CRichEditCtrl does not take the return
by Ștefan-Mihai MOGA
How to find a substring in a text, forward and backward, with Case Sensitive and Match Whole Word options.
by Orjan Westin
Simple function to get the text message corresponding to a system error.
by Dharmateja Challa
Using parallel_for_each which is part of Parallel Pattern Library ( PPL )
by ThatsAlok
Showcase for lambda function in C++
by Kenny MacLean
Using SmartMap to create objects that will clean up after themselves
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 Alain Rist
With a helper CharMap class using VC2010 C++0x implementation
by Adamanteus
Intercepting SEH exceptions in C++ program
by DigitalInBlue
Guidance on C++/C++!1 Parameter Passing
by Hatim Haidry
SIP Stack Implementation on the basis of RFC SIP 3261 Specification
by Jake Franta
SolidWidgets Grid tutorial.
by sunhui
In this paper, we will discuss some advanced skills for ATL COM development.
by jsolutions_uk
How to have a single declaration of a static member for derived classes, using a simple template
by Asif Bahrainwala
Atomic set and test in critical sections
by xdoukas
A tip on the implementation of Unix ucontext_t operations on Microsoft Windows.
by 8MX
Quick and easy way to use the Intel C++ compiler with C++/CLI.