Archive for October, 2009

Software Architecture Guidance Share

A good website to bookmark for architects.
URL: http://www.guidanceshare.com/
Purpose for this site is to share the body of guidance in software engineering that I’ve built over the years, while working with customers and experts in the field. While there’s a lot of existing information on software engineering, it can often be difficult to find, understand or [...]

Leave a Comment

Review: Community Tech Day 2009 Trivandrum

Here goes the photos I took with my new HTC Windows Mobile phone. Sorry for the clarify issues because or 1) lighting in hall and 2) my initial photos with a phone… think I need resolution adjustments.
 

View Full Album

 
Well, the overall program was excellent even though there were some sleepy minutes. Even though there was [...]

Leave a Comment

Visual Studio 2008 – WPF Designer not found?

Some people may face this. Seems some packages failed to load. Just do the trick:
devenv.exe /setup

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

Leave a Comment

Cloud vs Distributed vs Grid Computing

Cloud Computing
A computing capability that provides an abstraction between the computing resource and its underlying technical architecture, enabling convenient, on-demand network access to a shared pool of configurable computing resources that can be rapidly provisioned and released with minimal management effort or service provider interaction."

Distributed computing
A distributed system consists of multiple autonomous [...]

Leave a Comment

Windows 7 India! Great expectations!

The world’s largest software maker Microsoft today launched the ‘Windows 7’ operating system (OS) with a host of tools for multimedia applications for business and retail customers.
Read news here: http://beta.thehindu.com/sci-tech/article37207.ece?homepage=true
Windows 7 home : http://www.microsoft.com/windows/windows-7/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

N2 CMS - Good .NET CMS

N2CMS is a simple easily extendable CMS. Every ASP.NET web developers must try it. I felt the power only after my first trial.

Check: N2 Open Source ASP.NET CMS
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

c# Listbox – change color of items

Again old theme but seems still people want this. Here is the code for doing this:

private void Form1_Load(object sender, EventArgs e)
{
listBox1.DataSource = new
string[] { "asdfljk", "sdfgsdfg", "xcv", "wrwerwer" };
[...]

Leave a Comment

Internet connection system tray notifier

Here is a tool for you to check if internet connection available or not. The tool uses below code for connection detection:
Download URL: http://kidoos.net/media/p/598.aspx

private bool IsInternetAvailable()
{
bool ret = false;
 
[...]

Comments (2)

C# CopyFromScreen Animation

Here is a code snippet:

private void Form1_Load(object sender, EventArgs e)
{
this.Show();
Graphics myGraphics = this.CreateGraphics();
 
[...]

Leave a Comment

View all projects in a Visual Studio solution

Use this quick tool to view projects in a Visual Studio Solution (.sln file).
Download here: http://kidoos.net/media/p/596.aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment