Following's a post I made on my ASP.NET Weblog ( http://weblogs.asp.net/darrensim/default.aspx ) I've been working with a government agency lately, and came to notice that the software system they're using dates back to the stone ages. Many a time, the head of department is required to send an email...
Posted to
Darren Sim's Blog
on 06-29-2008
Filed under: Office 2007, Cool Stuff, Automation, Outlook, C#
You can check out this article here http://sdesmedt.wordpress.com/2006/04/05/hello-world-with-nhibernate/ I can say it is really easy to get started. However if you follow the codes in there, you will start to realize to face problems getting it running. I will provide some tips to get it work. 1) Requires...
A simple tip for managing your resources smartly with ' using ' using (SqlConnection sqlConn = new SqlConnection(...)) { sqlConn.Open(); using (SqlCommand sqlCmd = new SqlCommand(..., sqlConn)) { using (SqlDataReader dr = cmd.ExecuteReader()) { // Access elements items here } } } Extract from...
I believe this is something new which I will recommend you all to check this out. You can see this link here http://converter.telerik.com/ I had tried with couple of .NET 2.0 codes and it worked fine. Pretty impressive. I tried with a basic example below on a method returning a generic list type. C#...