The problem was solved when I set the parameters from the code instead from the UI's property for Parameters. In another word, instead of using Parameter Colelction Editor fomr MS VS 2005, I entered the following lines instead;
crDailySource.ReportDocument.SetParameterValue("@m ilestones", ddlMilestones.SelectedItem.Text);
crDailySource.ReportDocument.SetParameterValue("@r elease", ddlRelease.SelectedItem.Text);
Now, it's working like charm :D
|