Rajesh's Blog

My Photo
Name:
Location: Bangalore, India
Google

Tips to Reduce Abdominal Fat!

Wednesday, November 29, 2006

Ganglion Cyst

A cyst has been developed in the wrist of my left hand. If i remember correctly, it showed up over night around 8 months back. It was not painful but irritating and not generally considered harmful. I went to doctor and he told me that its nothing but "Ganglion cyst" known by its nickname "Bible Bumps"
Follow this link to read more about Ganglion cyst.

Tuesday, November 21, 2006

.NTE- Build Automation

Build Automation in .net Applications

Thursday, November 16, 2006

A request

Here is an email received from a senior of mine. I thought to post it here in blog as its a pointer to everyone. Here it goes...

Hi all,

A colleague of mine passed away on the 11th of November. He had a massive cardiac arrest while working out at a gym and was pronounced DOA at the hospital. The autopsy showed several 90-95% blocks in his heart. The guy was a teetotaler, non-smoker and basically a vegetarian. The doctors were surprised that there were no symptoms at all -- and the worrying part is the fact that he was just 30 years old (leaves behind wife and 2 sons - a 4 year old and a 10 month old baby).

The reason I sent out this mail is to request everyone to go ahead and have a proper medical checkup ( a simple blood test is not enough). Have a checkup that has a TMT, ECG etc etc. Please do this immediately. Please do go for a checkup. I have been deeply affected by the plight of his family and hence this mail.

BTW I do have these checkups done. I did have a checkup last August -- planning to get one more done now ( I probably need it more than most of you) :-)

Also for those who have taken home loans (consider taking out an insurance on the loan so that in case of some unfortunate incident our family will be spared some financial burden).

regards
Rajesh Jose

Spline

Spline- Read from Wikipedia

Sunday, November 12, 2006

c#- External component has thrown an exception

Read details

Please help Pooja find her parents

Please help Pooja find her parents

Tuesday, November 07, 2006

LINQ for VB.Net

Introducing LINQ for Visual Basic.NET- developer.com

Adjust combobox drop down list width- C#

This method is to adjust combobox drop down list width to longest string width in the list. Combobox menu width increases to longest string in the list. Invoke this method in the DropDown event of combobox.

public static void SetComboScrollWidth(object sender)
{
try
{
ComboBox senderComboBox = (ComboBox)sender;
int width = senderComboBox.Width;
Graphics g = senderComboBox.CreateGraphics();
Font font = senderComboBox.Font;

//checks if a scrollbar will be displayed.
//If yes, then get its width to adjust the size of the drop down list.
int vertScrollBarWidth =
(senderComboBox.Items.Count > senderComboBox.MaxDropDownItems)
? SystemInformation.VerticalScrollBarWidth : 0;

//Loop through list items and check size of each items.
//set the width of the drop down list to the width of the largest item.

int newWidth;
foreach (string s in ((ComboBox)sender).Items)
{
if (s != null)
{
newWidth = (int)g.MeasureString(s.Trim(), font).Width
+ vertScrollBarWidth;
if (width < newWidth)
{
width = newWidth;
}
}
}
senderComboBox.DropDownWidth = width;
}
catch (Exception objException)
{
//Catch objException
}
}

Monday, November 06, 2006

VS 2005 IDE Attempted to read or write protected memory

IDE Attempted to read/write protected memory