Click here to Skip to main content
15,905,325 members

Comments by osama.javed (Top 18 by date)

osama.javed 22-Sep-13 6:54am View    
Sir, Its still not working... :( Error
osama.javed 22-Sep-13 6:40am View    
Thankyou sir, But the name of column is dynamic, it'll not always be district. I need to select the column passed in string variable.
osama.javed 3-Aug-13 5:58am View    
but it will return only one column with respect to where condition, for example where Year(Date)<2007. It will only return the number of years less than 2007. What about year between 2007-2008.
osama.javed 28-Jul-13 8:51am View    
I have done this
cmbCompName.Text = "Select Option";
private void cmbCompName_TextChanged(object sender, EventArgs e)
{
if (cmbCompName.SelectedIndex < 0)
{
cmbCompName.Text = "Select Option";
}
else
{
cmbCompName.Text = cmbCompName.SelectedText;
}
}
but on pageload, it does not shows the 'select option' value
osama.javed 28-Jul-13 5:51am View    
how can i add 'Select Value from combobox' at first index of combo box in this approach.