IT Technology Blog

IT technology blog, featuring the essence for you to read the article, is to learn IT technology blog first choice

Tips & Tricks to Avoid Business Problems and Solve Development Issues in the Cloud

  Code Project Virtual Tech Summit Session If you missed the premiere of one of our virtual tech summits you'll still be able to view these sessions. This video originally premiered in our Cl

Spelling and Grammar Checking Plugin for Windows Live Writer

Introduction In my previous post, I presented “After the Deadline”, a spelling and grammar checking web service and my .NET wrapper library. This library allows you to integrate spell and grammar c

Getting Started with Windows Azure Development

  Code Project Virtual Tech Summit Session If you missed the premiere of one of our virtual tech summits you'll still be able to view these sessions. This video originally premiered in our C

Some Real World Experience with Windows Azure

  Code Project Virtual Tech Summit Session If you missed the premiere of one of our virtual tech summits you'll still be able to view these sessions. This video originally premiered in our Cl

Migrating to the Cloud

  Code Project Virtual Tech Summit Session If you missed the premiere of one of our virtual tech summits you'll still be able to view these sessions. This video originally premiered in our Cl

Ribbon with C++, Part 1: Introduction to the Windows Ribbon Framework

Due to popular demand, I’ve decided to use the knowledge I’ve gained while creating the Windows Ribbon for WinForms project and write a series of posts about working with the Windows Ribbon Framework

Fix Error: An attempt was made to load a program with an incorrect format

While trying to run the sample project ShellObjectWatcherSampleWPF from the latest version of Windows API Code Pack, I came across the following problem, both in Visual Studio 2008 and 2010: O

First Steps in F#

As you know, there are some OOP languages out there. You probably know VB.NET, C#, and Java, but I'm about to talk about a relatively new one. I would like to talk a little about F# (pronounced F Shar

INT to BINARY string in SQL Server

SQL Server doesn't have a native way of converting INTs to BINARY. Executing: SELECT CAST(25 AS BINARY) in fact returns 19 which is the hexadecimal equivalent, not the binary. Below, you can see t

Database Documentation with a Data Dictionary Part 2

A continuation of the data dictionary discussion with information about how the documentation is done. Today I’m going to continue discussing the data dictionary tables we’ve set up at the Boston Pub

ListBox drag selection

Download source code - 19.21 KB Introduction This is a short article on how to enable selection of multiple items inside a ListBox (or a derived class, such as ListView

Exception Handling in Visual C++

Introduction This article describes standard techniques of handling exceptions and errors in Visual C++ programs running in Windows.  An exception (or a critical error, or crash) typi

Serve extensionless URL without using ISAPI handler or wildcard mapping

Problem If you want to serve extensionless URL from ASP.NET 2.0 like the following:www.store.com/books www.store.com/books/asp.net2.0 www.forum.com/post/how-to-serve-extensionless-url You cannot, un

Lock-Free Single-Producer - Single Consumer Circular Queue

Download VC++ source + test - 6.89 KB Download source - 1.48 KB Source as text file (circularfifo.h.txt) Contents Introduction Part I Background Text and Code Disclaimer Implementa

What are Online Compilers & Online IDE's?

Introduction It has always been difficult for programmers to organize and work on projects across a variety of locations, computers, and devices – especially when you work in teams. When you store

A simple application to record current geographic location and display in web

Download source files - 594.65 KB Introduction Location-based services (LBS) are becoming more and more popular now a days. There are several mobile applications those detect user's current geograp

Custom ProgressBar Control

Download source - 298.47 KB Introduction Why another Progress Bar? The Standard ProgressBar was too limited and I couldn't find a custom control written that did all that I wanted. This is a User

Parsing XML file in VB.NET using DOM

Download source code - 15.2 KB Introduction There are many versions of XML parsers/readers on the Internet and on CodeProject (including my own in C/C++). This one was written several years ago in

Batch Image Resizer

Download demo - 417.9 KB Download source - 2.74 KB Introduction Batch Image Resizer resizes all the selected images to a particular size as specified in the textbox. To resize several images at o

Random Ranged Number Generator

Important Point In my algorithm I actually used the system time (Seconds and Milliseconds) with the factorial function to generate the random numbers unlike other articles who haven’t mentioned the