I have moved this blog and all my next blogs shall publish on – http://programmingflakes.com/
Thank you!
I have moved this blog and all my next blogs shall publish on – http://programmingflakes.com/
Thank you!
The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here’s a high level summary of its overall blog health:

The Blog-Health-o-Meter™ reads This blog is doing awesome!.
A Boeing 747-400 passenger jet can hold 416 passengers. This blog was viewed about 7,800 times in 2010. That’s about 19 full 747s.
In 2010, there were 5 new posts, growing the total archive of this blog to 23 posts. There were 2 pictures uploaded, taking up a total of 110kb.
The busiest day of the year was December 17th with 50 views. The most popular post that day was How to draw a custom border around a form or control?.
The top referring sites in 2010 were stackoverflow.com, social.msdn.microsoft.com, google.com, google.co.in, and experts-exchange.com.
Some visitors came searching, mostly for how to draw a border, winform drag and drop, c# custom border, c# draw border, and cool borders to draw.
These are the posts and pages that got the most views in 2010.
How to draw a custom border around a form or control? March 2007
11 comments
A Simple Drag Drop in WinForms February 2007
1 comment
Exploring MSIL – Properties October 2007
1 comment
Exploring MSIL – Delegates and Events October 2007
2 comments
Exploring MSIL – Static and Instance Methods October 2007
VS 2010 allows quick navigation by pressing the shortcut keys – Ctrl + , . This bring up the dialog box that displays the class names, method names and the field names. I can type the name of the class / field / method and the dialog shows the class / field / method that matches the name.
For example, searching for ‘Grid’ in my sample project returned the result shown below.
Another trick is to type only the capital letters in the name of the class / field / method in the ‘Search’ above. For example, ‘GridView’ can be searched by searching for ‘GV’ as shown below.![]()
UI testing is repetitive and time consuming. VS 2010 has added ‘Coded UI Test’ that allows us to create automated the UI test cases. This can save a lot of time and help in doing quick BVT (Build Verification Test). The following walkthrough demonstrates how to create automated UI tests using VS 2010.
Step 1: Create a new Test project in VS 2010
Lets begin by using File –> New Project menu item in VS 2010 to create a new Test project.
Step 2: Add a new Coded UI Test file to the project
Right click on the project and choose ‘Add –> Coded UI Test’ menu item.
This will add the necessary references to the project and bring up the ‘Generate Code for Coded UI Test’ dialog box.
Select the first option – ‘Record actions, edit UI map or add assertion’. This will bring up the recording screen at the bottom right of the screen. Click the red button to start the recording.
Step 3: Record the steps of the automated UI test
I will go to the Yahoo home page and browse to different pages.
Stop the recording and generate the code for the test by clicking the last button on the recording screen (shown in red border).
Step 4: Run the automated UI test case
Run the test case by clicking on Test –> Run –> All Tests in Solution. This will open the Yahoo home page and browse as per the recording done in the last step.
Make sure that the web browser is open before running the test case and you don’t change the mouse focus or press keys once the test case has started to run.
HTML 5 specifications are work in progress. Some of the important points about the HTML 5 as it’s specifications stands today are as following.