Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Common Tasks
Blog Home
Email Blog Author
RSS for posts
RSS for comments
Search
Blog - News
Recent Posts
GIDS 2013 Windows Phone 8 Developer Tips and Tricks Samples and Readings
Posted
9 days ago
by
Wriju
0
Comments
Windows Store Apps power of WinJS
Posted
11 days ago
by
Wriju
0
Comments
Great Indian Developer Summit 2013 : Windows Store App Development Hands on Lab
Posted
12 days ago
by
Wriju
0
Comments
GIDS 2013 Windows Phone 8 New Features and Tips & Tricks for Developers
Posted
13 days ago
by
Wriju
0
Comments
GIDS Windows Store Apps Workshop
Posted
25 days ago
by
Wriju
0
Comments
Tags
.NET
.NET/Visual Studio Tips
ADO.NET
ADO.NET Entity Framework
Announcements
Architecture
ASP.NET
Azure/Cloud
C# 3.0
C#.NET
Code First
LINQ
LINQ to SQL
LINQ to XML
Personal
Resources
SQL Server
Tips and Tricks
VB.NET 10
Visual Studio 11
Visual Studio 2008
Visual Studio 2010
Visual Studio 2010 Tip
Windows 8
Windows Phone 7
Archives
Archives
May 2013
(4)
April 2013
(5)
March 2013
(1)
February 2013
(2)
January 2013
(1)
December 2012
(5)
November 2012
(8)
October 2012
(12)
September 2012
(4)
August 2012
(5)
July 2012
(6)
June 2012
(3)
May 2012
(10)
April 2012
(15)
March 2012
(1)
February 2012
(4)
December 2011
(2)
November 2011
(3)
September 2011
(2)
August 2011
(11)
July 2011
(14)
May 2011
(9)
April 2011
(11)
March 2011
(14)
February 2011
(5)
January 2011
(1)
November 2010
(8)
October 2010
(4)
September 2010
(10)
August 2010
(4)
July 2010
(9)
June 2010
(6)
May 2010
(3)
April 2010
(2)
March 2010
(11)
February 2010
(9)
January 2010
(13)
December 2009
(3)
November 2009
(4)
October 2009
(6)
September 2009
(6)
August 2009
(3)
July 2009
(4)
June 2009
(8)
May 2009
(14)
April 2009
(10)
March 2009
(11)
February 2009
(9)
January 2009
(11)
December 2008
(3)
November 2008
(3)
October 2008
(8)
August 2008
(1)
July 2008
(14)
June 2008
(5)
May 2008
(5)
April 2008
(4)
March 2008
(11)
February 2008
(11)
January 2008
(4)
December 2007
(16)
November 2007
(14)
October 2007
(9)
September 2007
(1)
August 2007
(4)
July 2007
(17)
June 2007
(17)
May 2007
(14)
April 2007
(11)
March 2007
(16)
February 2007
(4)
January 2007
(6)
December 2006
(6)
November 2006
(1)
October 2006
(9)
September 2006
(3)
June 2006
(1)
May 2006
(2)
Blogs
ADO.NET
Browse by Tags
.NET
.NET Framework 4.0
ADO.NET
ADO.NET Entity Framework
ASP.NET
C# 4.0
C#.NET
Channel9
LINQ
LINQ to Entity
LINQ to SQL
Resources
SQL Server
Tips and Tricks
Visual Studio 11
Visual Studio 2008
Visual Studio 2010
Visual Studio 2010 Tip
Windows Forms
Blog Post:
Visual Studio 2011 : Pin the file in editor
Wriju
In Visual Studio 2011 you can pin the most used files. Namoskar!!!
on
12 Apr 2012
Blog Post:
Visual Studio 2011 : Filter the Error List
Wriju
Now in Visual Studio 2011 you can filter the error list based on the open document. So it will show you only those errors which are part of the currently focused file. Namoskar!!!
on
12 Apr 2012
Blog Post:
ADO.NET Entity Framework 4.0 : POCO – The Code Only Approach
Wriju
POCO in ADO.NET Entity Framework 4.0 has been discussed in many places. Here I am not going to talk about it. However, I created a small sample to demonstrate the capability of POCO in much more cleaner “code-only” approach. <<Apology for this blog post issue>>. There were some images, due...
on
28 May 2010
Blog Post:
Visual Studio 2010 : Dependency Graph, Sequence Diagram and Architecture Explorer
Wriju
I generally avoid meta blogging, but while going through my MSDN RSS feed I found one very detailed article on few of my favorite Visual Studio 2010 Features at http://blogs.msdn.com/jennifer/archive/2010/05/11/visual-studio-2010-how-to-understand-your-code-using-dependency-graphs-sequence-diagrams-and...
on
11 May 2010
Blog Post:
.NET Framework 4.0 Newbie : System.Device.Location
Wriju
In .NET Framework 4.0 using the System.Device.Location namespace one can easily access user’s computer’s location. For more detailed discussion please visit http://msdn.microsoft.com/en-us/library/system.device.location(VS.100).aspx Namoskar!!!
on
8 Mar 2010
Blog Post:
.NET Framework 4.0 Newbie : String.IsNullOrWhiteSpace
Wriju
In .NET Framework 4.0 we have String .IsNullOrWhiteSpace . String sData = " " ; if ( String .IsNullOrWhiteSpace(sData)) { Console .WriteLine( "Nothing to do" ); } This would help us to determine whether to work with a string without calling additional Trim() method. Namoskar...
on
4 Mar 2010
Blog Post:
Installing Visual Studio 2010 RC in Windows XP SP3
Wriju
Very helpful article http://blogs.msdn.com/psiman/archive/2010/03/02/installing-visual-studio-2010-rc1-on-xp-sp3.aspx Namoskar!!!
on
3 Mar 2010
Blog Post:
.NET Framework 4.0 Newbie : SortedSet<T>
Wriju
In .NET Framework 4.0 we have a new class called SortedSet<T>. This helps us to sort the elements without explicitly we implementing any sort method. var sSet = new SortedSet < int > { 2, 4, 6, 8, 9, 1, 3, 5, 7 }; //Getting directly the sorted output foreach ( int iVal in sSet...
on
2 Mar 2010
Blog Post:
.NET Framework 4.0 : Obsolete Types and Members
Wriju
There are a few obsolete types and members in .NET Framework 4.0. This is an extensive reference for those who write code. Obsolete Types in .NET Framework 4.0 http://msdn.microsoft.com/en-us/library/ee461503(VS.100).aspx Obsolete Members in .NET Framework 4.0 http://msdn.microsoft.com/en-us/library...
on
27 Feb 2010
Blog Post:
Channel 9 : Code Analysis using Visual Studio 2010
Wriju
My 3rd Channel 9 video on Code Analysis in Visual Studio 2010 at http://channel9.msdn.com/posts/wriju/Code-Analysis-Using-Visual-Studio-2010/ Namoskar!!!
on
22 Feb 2010
Blog Post:
Channel 9 Video : Performance Analyzer Tool of Visual Studio 2010
Wriju
My 4th Channel 9 video on Performance Analyzer Tool at http://channel9.msdn.com/posts/wriju/CPU-Sampling-using-Visual-Studio-2010-Performance-Analyzer-Tool/ Namoskar!!!
on
22 Feb 2010
Blog Post:
Visual Studio 2010 Tip #8: Editor now supports clickable URL
Wriju
In Visual Studio 2010 you can have URLs which you may click just like MS Word. This ULR clicking supported in normal String declaration and comments as well. Below is the screen shot, Namoskar!!!
on
16 Feb 2010
Blog Post:
Visual Studio 2010 Tips #7 : Dependency Graph
Wriju
In Visual Studio 2010 you can now create the dependency graph to view the complex structure of your class and the call tree. Once you explore it has got some additional view like, Right to Left. If you click on any entity it will take you to the code. This...
on
12 Feb 2010
Blog Post:
VS 2010 Tips#6 : Architecture Explorer
Wriju
In Visual Studio 2010 we have a great tool called Architecture Explorer to view the structure of our objects. Unlike object browser or class diagram this also helps us to view the calls per element is made in the project. This is one additional step towards the enhancement. This can be found at Namoskar...
on
2 Feb 2010
Blog Post:
VS 2010 Tips #5 : New Extension Manager
Wriju
In Visual Studio 2010 we can now get all the available extensions from http://visualstudiogallery.msdn.microsoft.com and add to our project from and within Visual Studio. You will find it under Tools > Extension Manager. Here you can add, search and modify the available extensions. Namoskar!!!
on
1 Feb 2010
Blog Post:
Visual Studio 2010 and .NET Framework 4 Beta 1 Walkthroughs
Wriju
Watch out the videos on Visual Studio 2010 at http://msdn.microsoft.com/en-us/teamsystem/dd441784.aspx Here are some of them, Ø Dynamic Programming in Visual C# and Visual Basic Ø Office Programmability in Visual C# and VisualBasic Ø Test-driven Development with Generate From Usage...
on
25 May 2009
Blog Post:
Immediate Window is missing in Visual Studio Menu
Wriju
When you do not see “Immediate” window under Debug menu of Visual Studio you may get frustrated. But there is a quick way to get it when required, Go to View > Other Windows > Command Window or press Ctrl+W, A Then type immed . It will bring the Immediate Window . And inside the...
on
13 May 2009
Blog Post:
ASP.NET 3.5 ListView and DataPager : Making RSS Reader
Wriju
ASP.NET 3.5 comes with bundle of new data bound controls. Among them ListView and DataPager are the ones I am going talk here. To me ListView is the enhanced from of DataRepeater. It has got everything you might need to create an app with your HTML/CSS skill set. Today you often visit blogs and you subscribe...
on
19 Apr 2009
Blog Post:
Improving LINQ to SQL Application Performance
Wriju
Must read http://www.sidarok.com/web/blog/content/2008/05/02/10-tips-to-improve-your-linq-to-sql-application-performance.html Namoskar!!!
on
14 Apr 2009
Blog Post:
ADO.NET and Data Articles by John Papa
Wriju
Many of you might be following John Papa’s article on Data and related topics. Myself have came across many of his and are still following. I would like to share a list of articles by him published in MSDN Magazine and available online for you. Data Points: Designing an Entity Data Model With the...
on
1 Feb 2009
Blog Post:
LINQ to Entity : Supported and Unsupported Methods
Wriju
There is a correction for this Post , so do I have changed the title. Thanks to Chris Love who pointed me the faults with earlier post, I got few question on some of the popular paging methods of LINQ which does not work on LINQ to Entity. This is by design and quite logical. In LINQ to SQL scenario...
on
2 Jan 2009
Blog Post:
Windows Forms – Enable Shortcut Key all over the Form
Wriju
Windows Application and shortcut key are synonyms. People prefer to use shortcut keys for faster activity. Assume you are in a text box and you want to hit F5 to reload the form. You do not want to move your mouse cursor. So what you will be doing is that you will be adding “Key Down” event to the text...
on
16 Jul 2008
Blog Post:
Programmatically invoking the Live.com search
Wriju
Live.com you need to automate that in your Windows application. You will use the WebBrowser control. This is a very powerful control and allows us to control things through DOM. Here is a small code which insert values to the live.com’s seach text box and clicks the “Go” button. I have created a windows...
on
14 Jul 2008
Blog Post:
How to copy my snippet in Visual Studio 2008
Wriju
I use Visual Studio 2008 code snippet a lot when I write code for my presentation. It saves a lot of time and it is very elegant. But I used to struggle a lot while changing my demo machine. Because I had to repeat the same process again and again from Tools > Snippet Manager , I find it very inconvenient...
on
5 Jul 2008
Blog Post:
ZoomIt : Fantastic Windows Zooming Application
Wriju
When I show demo using my desktop I often come across to the scenarios where things are very small. I was using Windows Magnifier. I found this tool later and this is very helpful. This tool was created by Microsoft Technical Fellow, Mark Russinovich. Some facts, Ø ZoomIt runs on System Tray ...
on
5 Jul 2008
Page 1 of 2 (28 items)
1
2
MSDN Blogs
>
Wriju's BLOG
>
All Tags
>
.net/visual studio tips