thank you for your suggestion.
I am planning to keep my save button disables until the selections are made.
So i would like to know which event
"SelectedValueChanged" or
"TextChanged" would be appropriate for this...
"SelectedIndexChanged" is used to display the values in other combobox as per selection in the first....
thanks
AKSSMV
Quote:
quote:Originally posted by velan
hi
u just do the following in the save button click event
if(combobox.text != "")
{
//code for saving informations
}
else
{
messagebox("Please select an item in combo");
}
|