Wednesday, September 13, 2006
Web Site Projects V Web Application Projects
Friday, May 05, 2006
Its Life Or Death @ 240
Thursday, April 13, 2006
Bangladesh Played Well But…
Monday, March 20, 2006
Quotes
Today, I come across a couple of worth mentioning quotes.
He who praises you for what you lack wishes to take from you what you have.
- Don Juan Manuel
Happiness keeps you Sweet,
Trials keep you Strong,
Sorrow keeps you Human,
Failure keeps you Humble,
Success keeps you glowing,
But only God keeps you going.
Wednesday, March 15, 2006
DropDownList V ComboBox
In ASP.NET, the DropDownList can be bound as:
this.dropDownList.DataSource = dataSet;
if (dataSet.Tables[0].Rows.Count > 0)
{
this.dropDownList.DataTextField = "Text";
this.dropDownList.DataValueField = "Value";
}
this.dropDownList.DataBind();
Where as in Windows Application, the DropDownList can be bound as:
this.comboBox1.DataSource = dataSet.Tables[0];
this.comboBox1.DisplayMember = "Text";
this.comboBox1.ValueMember = "Value";
The difference between the two is that in ASP.NET, DropDownList can be bound with a DataSet provided that DataSet contains only one DataTable where as in Windows Application, ComboBox can only be bound with a DataTable. The "Text" and "Value" are the columns in the DataTable.
Monday, March 13, 2006
A Remarkable Day In Cricket History
Tuesday, March 07, 2006
Professional Attitude
Every Failure Leads To Great Success
Never disappoint from the Blessings of Allah.
If one works hard but doesn't get the desired results, a wave of disappointment stops him to move further in that direction. This is natural to all human beings but one forgets that only Allah Almighty knows all about future. This failure may prevent him from hidden difficulties or this failure may lead him to another direction that will be much better for him. We, human beings, can only see what is apparent but we can't see beyond a limit. Only time can prove that whatever happened was right at that time. So, never disappoint from a single or even a series of failures but keeps on hard work. Night may be long but a day always come after a night. So, always keeps in mind that "Every failure leads to a great success but determination is required".