| 1 |
Introduction to Dynamic SQL
Category: Articles - Database Development - SQL Server Articles Posted: 10/8/2008
|
Damian Maclennen |
| 6 |
| One of the most common questions we get involves Dynamic SQL. Using dynamic SQL you can put a SQL statement inside a variable and execute that statement. It's what you have to do when you're trying to run Select * from @TableName. Thanks Merkin! |
| 2 |
Online active users counter in ASP.NET
Category: Articles - Web Development - ASP.NET Updated: 9/26/2008
|
Salar Khalilzadeh |
| 96 |
| This class provides functionality to calculate online users, member or guest users. |
| 3 |
Cryptography in .NET
Category: Articles - Security - Cryptography Posted: 9/13/2008
|
Mark Strawmyer |
| 31 |
| Mark covers encrypting data using the cryptography classes available through the Microsoft .NET Framework. |
| 4 |
Visual C++ 2008 Feature Pack: MFC Enhancements
Category: Articles - Languages - C / C++ Articles Posted: 7/9/2008
|
Nick Wienholt |
| 97 |
| The Visual C++ 2008 Feature Pack incorporates C++ language changes that move C++ closer to the upcoming C++0x standard. Review some of the new language features, and see how they can be incorporated into C++ applications. By Nick Wienholt. |
| 5 |
OCILIB: Faster and Friendlier Access to Oracle's OCI API
Category: Articles - Database Development - Oracle Posted: 7/9/2008
|
Victor Volkman |
| 105 |
| Why get bogged down in the quicksand of the Oracle Call Interface (OCI) when you can get the same service with less code and fewer headaches with Vincent Rogier's OCILIB? By Victor Volkman. |
| 6 |
Guitar Tuner Vista Gadget Using Silverlight
Category: Articles - Platforms & Libraries - Silverlight Posted: 6/29/2008
|
kirants |
| 128 |
| Walk through the development of a simple guitar tuner Vista sidebar gadget and in the process learn a little bit about Silverlight, XAML, and Vista gadgets. By kirants. |
| 7 |
Modeling Hierarchies
Category: Articles - Programming Knowledge - Data Structures and Algorithms Posted: 6/28/2008
|
Tom Haughey |
| 123 |
| This article talks about the basic concepts of recursion in a logical model, and will discuss several practical physical implementations, namely, DBMS, descendent tables, snowflaked hierarchies, flattened hierarchies, self-joins, and nested sets. |
| 8 |
Fixing a Quirk of VB Lambda Expressions
Category: Articles - Languages - VB.NET Articles Posted: 4/24/2008
|
Paul Kimmel |
| 209 |
| Learn how to define Lambda Expressions that perform an action without a return value. |
| 9 |
Exploring Lambda Expression Trees
Category: Articles - Languages - VB.NET Articles Posted: 4/24/2008
|
Paul Kimmel |
| 207 |
| Gain an understanding of the difference between Lambda Expressions generated as code and those generated as expression trees. Explore the expression tree and briefly touch on how API developers uses expression trees to convert expressions to other forms, |
| 10 |
Trapping windows messages
Category: Articles - Desktop Development - Miscellaneous Posted: 4/16/2008
|
Rui Reis |
| 223 |
| Trapping windows messages in the .NET framework - a small tutorial |