Archive for August, 2009

I am back to town

After a small pause due to issues in family, I am back to tech world.
Hi… whats up???
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Most Downloaded .NET Web projects in CodePlex

List as on 21 Aug 2009
 
Content Management Systems (CMS)
 

DotNetNuke® Community Edition
Umbraco CMS
mojoPortal
N2 CMS
Kooboo CMS

 
Blogs
 

BlogEngine.NET
dasBlog
Oxite

 
eCommerce
 

nopCommerce. Open Source online shop e-commerce solution.
NB_Store - Free DotNetNuke Ecommerce Catalog Module

VN:F [1.1.6_502]Rating: 5.0/5 (1 vote cast)

Leave a Comment

VSTO: Outlook - Add a contact programmatically – in C#

Here goes the code:

folder = this.Application.Session
.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts);
 
Outlook.ContactItem ci = (ContactItem)folder
.Items.Add(OlItemType.olContactItem);
ci.FirstName = "xyz";
[...]

Leave a Comment

Find your lucky number in c#

A traditional hobby script based on numerology
You can download the WinForms application from: http://kidoos.net/media/p/578.aspx

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
 
public Form1()
{
[...]

Leave a Comment

Free eBook O’Reilly C# 3.0 Pocket Reference 2nd Edition

Just found a good free eBook on Redgate website.

Download it here
Direct download link 

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

High-Performance .NET Application Development & Architecture

Found this useful link while surfing.
Check this: http://www.developerfusion.com/article/5385/highperformance-net-application-development-architecture/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Virtual TechDays: FREE Technical Training Opportunity‏

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

My new cell number

+91_974_533_9033
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

AJAX Language API

Found this one interesting.
With the AJAX Language API, you can translate and detect the language of blocks of text within a webpage using only JavaScript. In addition, you can enable transliteration on any textfield or textarea in your web page. For example, if you were transliterating to Hindi, this API will allow users to phonetically [...]

Leave a Comment

Apply LINQ on XML string

Use the System.Xml.Linq namespace for this.
Here is a sample program:

string str = @"
<LanguageDetails>
[...]

Leave a Comment