Microsoft Visual Studio: Secure CRT Functions
Discover how to deal with C4996 warning, what secure CRT functions are and how to correctly use them.
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.
Tips and Tricks for Using WinUnit with Microsoft Visual Studio
This article deals with advanced-level tips and tricks for using WinUnit, how to integrate WinUnit with Microsoft Visual Studio, and recommended guidelines.
Use your C++ Programming skills to create a special list control that allows a control to be inserted in a particular cell.
USING VC++ .NET |
C++ Programming: Understanding Standard C++ Library Additions in Visual C++ 2010
For every true C++ developer, the Standard C++ Library is the first choice for utility classes, collections and algorithms to streamline the development effort. Continuing on from the investment in core C++ programming improvements in Visual C++ 2008, Visual C++ 2010 introduces improvements in the Standard C++ Library related to C++ 0x, and this article focuses on advancements in Standard C++ collections and algorithms.
.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 |
SQL CLR Integration in SQL Server 2008
Is some of your business logic in code and some in SQL Server? Then, just call the SQL from the .NET framework and the .NET framework from SQL with CLR integration. Here are all the steps you need to get started.
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.