Always remain updated about current software development trends

Articles by LAKAMRAJU RAGHURAM

Codeproject Windows Phone Application

This article aims at building an simple Windows phone 7 application for accessing Codeproject content.

Optimizing object size by clustering

Optimizing object size by clustering

C++11 – A Glance [part 1 of n]

A glance at the C++11 Standard, covering features supported in VS2010.

Fast and easy memory leak detection

For Visual Studio IDE we can detect leaks by using CRT debugger functions#define _CRTDBG_MAP_ALLOC#include #include void main(){ // ...... // ...... _CrtDumpMemoryLeaks();}This will dump leaks if any to the Output window. Check this link :...

How to build an image (DLL/EXE) when two of its included libraries have the same symbol (say function/variable) using VC++

As stated by many, the inclusion of /FORCE:MULTIPLE switch may lead to unexpected scenarios (even though the code will compile and link) and as an alternative we can build a DLL wrapper [as hinted by dvpsun] over any of the static lib and can invoke the repeated...

How to build an image (DLL/EXE) when two of its included libraries have the same symbol (say function/variable) using VC++

How to build an image (DLL/EXE) when two of its included libraries have the same symbol (say function/variable) using VC++

C++11 – A Glance [part 2 of n]

A glance at the C++11 Standard, covering features supported in VS2010. This is the next part of this series