I have several reports from report designers that were developed in 2005 Reporting Services. I renamed them from .rdl to .rdlc so I could have them locally running in a .NET app and bind them to a dataset (this is what our development team requires). The issue is that the .rdlc file still thinks that it is looking for the query, therefore when I try to remove the parameters from it that it doesn't need (the parameters for the query) my project will not build. It gives the following error for my @SelectType parameter....."The Value expression for the query parameter '@SelectType' refers to a non-existing report parameter 'SelectType'."
How can I tell the .rdlc file to not look at the query anymore so it is not expecting these parameters?
Thanks,
Adam