DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

deepakkapoor Subscribe to this feed
deepakkapoor
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories submitted by deepakkapoor
4
kicks
submitted by deepakkapoor 8 days, 5 hours ago

onedotnetway.com — To get a list of installed applications we need to look into registry. Microsoft.Win32 namespace contains objects which can be used to work with Windows Registry. In this post I will show you some code where I use the power of LINQ to retrieve and display a list of all applications installed on a machine. read more...

Add a comment add a comment | category: | Views: 3
tags: | tag it

3
kicks
submitted by deepakkapoor 24 days, 8 hours ago

onedotnetway.com — At times us developers have to deal with delimited text files in our applications. Such files have been around since yonks and I often come across data import/export tasks where delimited files are used. Till now the common way in .NET has been to read each line and then extract data using some sort of creative string functions within for loops. But there is another way by using LINQ. In this tutorial I will show you how to use LINQ to read such data. By the end of tutorial you will appreciate how easy and logical it is to use LINQ for reading data from delimited text files. read more...

Add a comment add a comment | category: | Views: 10
tags: | tag it

4
kicks
submitted by deepakkapoor 25 days, 10 hours ago

elegantcode.com — Thank you for your team’s contributions to the software development industry. ASP.Net, the CLR, and your other significant additions to the .Net platform have genuinely advanced the state of software development. Although it may seem that you are damned if you do and damned if you don’t, most of us developers out here do appreciate your work. read more...

Add a comment 1 comment | category: | Views: 27
tags: | tag it

1
kicks
submitted by deepakkapoor 26 days, 9 hours ago

onedotnetway.com — Back in may I posted Part 1 of this series on my old blog. Looking at the statistics it turned out to be one of the highly visited post. Recently I also had a comment asking me when I was publishing other parts of study links. Continuing the same trend here is the second part of this series. read more...

tags: | tag it

2
kicks
submitted by deepakkapoor 28 days, 7 hours ago

onedotnetway.com — While there is a lot of talk about refactoring tools such as Resharper and Refactor Pro, not much is said about refactoring features available in Visual Studio 2008 straight out of the box. I think Resharper and Refactor Pro are fantastic tools but they cost money and most of the time our refactoring needs are simple or you maybe in an environment where such tools are not available. So what do you do? Worry not, Visual Studio comes with excellent refactoring support. In this post I will show different refactoring features of Visual Studio. read more...

Add a comment add a comment | category: | Views: 21
tags: | tag it

4
kicks
submitted by deepakkapoor 30 days, 9 hours ago

onedotnetway.com — StyleCop is a source analysis tool for C#. It can be used for analysing source code as opposed to compiled assemblies which is the area for FxCop. StyleCop is currently in version 4.2 and can be downloaded here. In this tutorial I will show you how to use StyleCop. read more...

Add a comment add a comment | category: | Views: 12
tags: | tag it

3
kicks
submitted by deepakkapoor 1 month, 2 days ago

onedotnetway.com — In this post I will show you how to perform dynamic sorting with LINQ. read more...

Add a comment 1 comment | category: | Views: 14
tags: | tag it

3
kicks
submitted by deepakkapoor 1 month, 5 days ago

onedotnetway.com — C# as a language has matured over years. We have come a long way from the first version of C# to the current which incorporates LINQ. Here is an example I recently used in a training session. My objective was to show students how we can retrieve items from a collection based on a certain criteria in different ways. read more...

Add a comment add a comment | category: | Views: 10
tags: | tag it

3
kicks
submitted by deepakkapoor 1 month, 5 days ago

onedotnetway.com — Few weeks ago Microsoft announced a new certification called Microsoft Certified Master. In an ever growing cluster of Microsoft certification this one allows you to specialise in a particular technology area. So what does this mean? Aren’t other certifications specialising as well? According to Microsoft, Master certification is intended towards candidates who spend most of their time working with one product. This is different than your average developer who needs to know about many technologies such as ASP.NET, SQL Server, WCF, WFP etc. read more...

Add a comment add a comment | category: | Views: 6
| tag it

2
kicks
submitted by deepakkapoor 1 month, 6 days ago

onedotnetway.com — With .NET Framework 3.5 Microsoft released Language Integrated Query aka LINQ. LINQ enables developers to query data sources using a query like syntax with both C# and VB.NET. These data sources can be collections, SQL Server databases, XML, DataSets etc. Other than what is supplied by Microsoft, LINQ is also extensible. This means that you can query data sources beyond what Microsoft ships. Examples of such implementations are LINQ To Flickr, LINQ To Amazon, LINQ to Google etc. In this article I will show you how you can use LINQ To SQL to perform CRUD operations on a SQL Server database. read more...

Add a comment add a comment | category: | Views: 10
tags: | tag it

2
kicks
submitted by deepakkapoor 1 month, 9 days ago

deepakkapoor.net — Microsoft’s Cloud Computing Initiatives are taking shape. I expect a big bang launch somewhere around PDC 2008. Earlier I blogged about the whiff I got about Microsoft’s offering for developers in the cloud by looking at the list of PDC 2008 sessions. Today I will look at what it takes to get started with Microsoft Online Services. read more...

Add a comment add a comment | category: | Views: 13
tags: , , , , | tag it

2
kicks
submitted by deepakkapoor 1 month, 21 days ago

deepakkapoor.net — While working with SharePoint VPC Image I got an error when I imported an Excel file for a custom list. The error says "This workbook has lost its VBA project, ActiveX controls and any other programmability-related features." read more...

Add a comment add a comment | category: | Views: 4
tags: , , | tag it

1
kicks
submitted by deepakkapoor 1 month, 26 days ago

deepakkapoor.net — I have always had my doubts on Alexa. I somehow was never convinced about its ranking system. Today I found what could be the mother of all malfunctions. I went to Alex to look at my rankings and I saw this: read more...

Add a comment add a comment | category: | Views: 12
tags: , | tag it

2
kicks
submitted by deepakkapoor 2 months, 3 days ago

deepakkapoor.net — Joseph Albahari who co-authored C# 3.0 in a Nutshell has written a fantastic tool for writing LINQ queries called LINQPad. Lately I have been working extensively with LINQ and I often feel the need to write some code quickly to test my query. read more...

Add a comment add a comment | category: | Views: 6
tags: , | tag it

2
kicks
submitted by deepakkapoor 2 months, 7 days ago

deepakkapoor.net — .NET Framework provides String.IsNullOrEmpty() method which return true if the string is null or empty. It does not however take care of a string which only contains spaces. Often while persisting data we do not want to persist just empty strings. In past I have made this check before I let my data pass through. Today I thought of creating an extension method to do the same for me. read more...

Add a comment add a comment | category: | Views: 22
tags: , , | tag it

1
kicks
submitted by deepakkapoor 2 months, 14 days ago

deepakkapoor.net — LINQ comes packed with few useful ordering operators. These are: OrderBy, ThenBy, OrderByDescending and ThenByDescending. I will walkthrough these operators using an example of cities. read more...

Add a comment add a comment | category: | Views: 8
tags: | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge