Skip to content

C and C++

Easy way to set up global API hooks

CodeGuru.com - Wed, 03/10/2010 - 06:00
Discover an easy way to set up system-wide global API hooks using AppInit_DLLs registry key for DLL injection and Mhook library for API hooking. To illustrate this technique we will show how to easily hide calc.exe from the list of running processes.
Categories: C and C++

CodePlex Gets Organized

CodeGuru.com - Tue, 03/09/2010 - 06:00
Microsoft-sponsored open source foundation names a new permanent board of directors as the effort aims to grow beyond its roots.
Categories: C and C++

Visualizing Nodes and Edges with Microsoft Automatic Graph Layout

CodeGuru.com - Tue, 03/09/2010 - 06:00
Learn about the Microsoft Automatic Graph Layout using a Windows Presentation Foundation (WPF) sample application.
Categories: C and C++

TIP: Half Size Triangular Matrix

CodeGuru.com - Mon, 03/01/2010 - 06:00
Learn about a technique that allows you to use half the data storage when you have a symmetric distance matrix or other similar triangular matrix.
Categories: C and C++

Improve Application Quality with Microsoft Foundation Class (MFC) Restart and Recovery

CodeGuru.com - Fri, 02/26/2010 - 06:00
Windows Vista and 7 provide the ability to restart crashed or hung applications and recover your work. By building on the strength of the Document-View Architecture, Microsoft Foundation Class (MFC) 10 allows new and existing applications to easily take advantage of these Windows features.
Categories: C and C++

Comparing the Performance of Microsoft Visual Studio's Web Reference to a Custom Class

CodeGuru.com - Wed, 02/24/2010 - 06:00
This article compares the performance of using a Web Service proxy class created by Visual Studio vs. a custom created class.
Categories: C and C++

Guide ::

InformIT :: C++ Reference Guide - Thu, 02/18/2010 - 11:13
Categories: C and C++

A Glimpse at Microsoft Visual Studio 2010

CodeGuru.com - Thu, 02/18/2010 - 06:00
In this article you'll explore the notable features of Microsoft Visual Studio 2010 Professional Edition.
Categories: C and C++

Advanced C++ Listcontrol

CodeGuru.com - Wed, 02/17/2010 - 06:00
Use your C++ Programming skills to create a special list control that allows another list control to be inserted in a particular cell.
Categories: C and C++

Intel, Nokia Team Up on MeeGo

Dr.Dobb's C++ Articles - Tue, 02/16/2010 - 19:27
New platform emerges from merging Linux-based Moblin and Maemo
Categories: C and C++

Using LINQ with Dynamic Where Clauses

CodeGuru.com - Fri, 02/12/2010 - 06:00
Do you need to create Dynamic Where Clauses at runtime? No need to use string concatenation with SQL, LINQ is fully capable of performing the same task.
Categories: C and C++

Using Microsoft's Chart Controls In An ASP.NET Application: Serializing Chart Data

CodeGuru.com - Wed, 02/10/2010 - 06:00
This article, by Scott Mitchell, shows how to store (and load) the data generated by the Microsoft Chart Controls to disk or some other store.
Categories: C and C++

Calculating Pi to arbitrary number of digits

CodeGuru.com - Wed, 02/10/2010 - 06:00
The code calculates the value of Pi to arbitrary number of digits such as 100, 1000 etc. The article describes the theory behind the code.
Categories: C and C++