[Updated] Advanced C++ Listcontrol (not yet reviewed)
Use your C++ Programming skills to create a special list control that allows a control to be inserted in a particular cell.
Use your C++ Programming skills to create a special list control that allows a control to be inserted in a particular cell.
Faster Microsoft C++ Programming With The MFC Class Wizard
During the glory days of MFC and ATL in the 1990s and early 2000s, The Visual C++ class wizard was a highly-used and useful IDE tool that simplified life for developers. The re-introduction of the class wizard, after the absence of a decade, demonstrates commitment to the 'glory day's' ideal and adds simplicity to class management tasks inside the IDE.
Microsoft Visual Studio: Secure CRT Functions
Discover how to deal with C4996 warning, what secure CRT functions are and how to correctly use them.
[Updated] C++ Programming: Stack Allocators for STL Containers (not yet reviewed)
This article describes how to create stack based allocators for use with STL containers.
Introducing Microsoft Visual Studio Team Foundation Server 2010, Part I
Microsoft has been talking about Application Lifecycle Management (ALM) at least half a decade, and has had a software solution since 2005. Now, the product is easily approachable by everyone, including the lone developer. But what is the Microsoft ALM solution and why is it useful?
Five Ways to Improve Your C++ Programming with C++0x Defaulted and Deleted Functions
C++0x introduces two new function specifiers: =default and =delete. The former instructs the compiler to implicitly define a member function that it wouldn't define otherwise. The latter suppresses the implicit definition of a member function. Find out how to use this mechanism to reduce labor-intensive tasks, improve performance, and make your classes more secure.
USING VC++ .NET |
Faster Microsoft C++ Programming With The MFC Class Wizard
During the glory days of MFC and ATL in the 1990s and early 2000s, The Visual C++ class wizard was a highly-used and useful IDE tool that simplified life for developers. The re-introduction of the class wizard, after the absence of a decade, demonstrates commitment to the 'glory day's' ideal and adds simplicity to class management tasks inside the IDE.
.NET NUTS & BOLTS |
.NET Framework: Use Your Own Cache Wrapper to Help Performance
See how you can use the .NET framework to create your own wrapper classes in C# programming to help boost your application performance when accessing a bunch of reference or other look-up type data that you frequently use.
VISUAL BASIC TODAY |
Visual Basic .NET Development 101: Learning and Using Microsoft Visual Studio 2010
Microsoft Visual Studio 2010 is a great integrated development environment for turning out top quality .NET framework applications. VB 2010 Express provides the same basic tools without some of the high-end team development pieces. This first of a two-part article will introduce the user to the VB 2010 Express product.
PROGRAMMING INSIGHTS |
Microsoft .NET Framework 4.0 Task Parallel Library Continuations
Task Continuations allows developers to create interdependencies between tasks. The interdependencies can involve simple execution in response to task completion or aggregated exception handling among tasks. Read along to learn more.