Welcome to MSDN Blogs
Sign in
|
Join
|
Help
A blog on coding, .NET, .NET Compact Framework and life in general....
I know the answer (it's 42)
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
Amazing India
C# / .NET / Coding
Everything else
Fun
Garbage Collection
Ruby
Silverlight
Software
Team System
Tech
Technology
User interface
News
Web Site
Who links to my blog
Archives
November 2009 (1)
September 2009 (3)
August 2009 (1)
June 2009 (1)
May 2009 (1)
April 2009 (8)
March 2009 (9)
February 2009 (5)
January 2009 (6)
December 2008 (1)
November 2008 (1)
October 2008 (6)
September 2008 (5)
August 2008 (3)
July 2008 (7)
June 2008 (2)
May 2008 (12)
April 2008 (4)
March 2008 (1)
February 2008 (3)
January 2008 (4)
December 2007 (4)
November 2007 (9)
October 2007 (3)
September 2007 (6)
August 2007 (5)
July 2007 (7)
June 2007 (12)
May 2007 (7)
April 2007 (2)
March 2007 (3)
February 2007 (8)
January 2007 (7)
December 2006 (11)
November 2006 (7)
October 2006 (4)
September 2006 (1)
August 2006 (11)
July 2006 (7)
June 2006 (5)
May 2006 (5)
April 2006 (7)
March 2006 (7)
February 2006 (11)
January 2006 (18)
December 2005 (15)
November 2005 (14)
October 2005 (15)
September 2005 (13)
August 2005 (10)
July 2005 (1)
June 2005 (3)
May 2005 (1)
April 2005 (1)
March 2005 (1)
January 2005 (2)
December 2004 (2)
November 2004 (2)
C# / .NET
Don Box
JFo's coding
Rico Mariani
Mike Stall
Way Ward
Jomo
Eric Lippert
Brad Abrams
Dan Fernandez
Everything else
Larry Osterman
Raymond Chen
Scoble
Joel
Flowstate
Team System
Rob Caron
Brian Harry
buck hodges
James Manning
August 2005 - Posts
Sunday, August 28, 2005 6:52 PM
Build Type creation and Drop Location
One of the most common issues everyone is running into with Team Build is configuring the Drop Location. All builds that happen through Team Build are dropped (bits are copied) to this location. Drop location is entered in the Location page of the Build
Posted by
abhinaba
|
1 Comments
Filed under:
Team System
Friday, August 26, 2005 12:44 AM
subscribe / unsubscribe to an event
In one of the internal aliases there was a discussion going on some time back regarding which is the better way to unsubscribe from an event and why does the first one even work myClass1.MyEvent += new EventHandler (Function); Do all stuff myClass1.MyEvent
Posted by
abhinaba
|
4 Comments
Filed under:
C# / .NET / Coding
Thursday, August 25, 2005 3:41 PM
Emails, Emails and more emails
Just saw the post Slaves to email on excess email in MS and I couldn't agree more..... Large email volume for people who manage others, or those who interact with external customers is expected. But even for individual contributors (Dev/Test) the volume
Posted by
abhinaba
|
0 Comments
Filed under:
Everything else
Wednesday, August 24, 2005 11:34 PM
The CLR Nullable DCR works!!!!!
CLR took a DCR some time back on how nullable types are implemented. See here and here to find out more about the DCR. I found from one of the internal DLs that the fix was already in the RTM bits. I wrote a small piece of code which should work only
Posted by
abhinaba
|
0 Comments
Filed under:
C# / .NET / Coding
Tuesday, August 16, 2005 3:43 PM
Frame arrangement in image strips used for animation
Sometimes we get so used to things being the way they are we stop questioning them. We always have the perception in mind that individual frames of animated logo in a Bitmap strip is always horizontally arranged. I remember writing code to extract icons
Posted by
abhinaba
|
0 Comments
Filed under:
User interface
Sunday, August 14, 2005 1:32 AM
CLR takes a DCR for Nullable type
I saw from Soma's blog that VS is taking a DCR to fix the issues about Nullable types that is being talked about in various blog. This is super cool as Microsoft demonstrated like never before that we do care about customer feedback as this is a direct
Posted by
abhinaba
|
5 Comments
Filed under:
C# / .NET / Coding
Friday, August 12, 2005 8:45 PM
Function generator in C++
Some of us were just chatting about my previous post about function generators and we wondered about whether it can be done in C++ without using function pointers.... Most of my C++ knowledge has been rusted beyond repair but I thought even though its
Posted by
abhinaba
|
0 Comments
Filed under:
C# / .NET / Coding
Thursday, August 11, 2005 10:59 PM
My experiments with continuation in C#
The blogs are buzzing with continuation support in C# 2.0 and what cool things can be done with it. http://www.intertwingly.net/blog/2005/04/13/Continuations-for-Curmudgeons explains the concept of continuation extremely well. I also found Don Box's posting
Posted by
abhinaba
|
4 Comments
Filed under:
C# / .NET / Coding
Tuesday, August 09, 2005 8:40 PM
Team Build notification tool
< this tool has been updated check out here > As we go on developing the product we frequently feel strong about doing new things around our product either to increase customer value, easy of use, flexibility or just because it can be done. Most
Posted by
abhinaba
|
11 Comments
Filed under:
Team System
Monday, August 08, 2005 2:53 PM
Anonymous methods and closures in C#
Anonymous Method One of the new features in C#2.0 being shipped in with Whidbey is anonymous methods. Though this at first glance looks like an easy way of creating delegates, where instead of having to create a new function which the delegate will call
Posted by
abhinaba
|
8 Comments
Filed under:
C# / .NET / Coding