This is my first time using the Microsoft Report Viewer control and I'm thinking it is very straight forward but I keep getting this following error:
An error occurred during local report processing.
The report definition for report 'Report3' has not been specified
Object reference not set to an instance of an object.
I have a view from my Oracle Database that I am using that looks like this:

I walk through the GUI and make a "New Report" and add this DataSet to a "Table". I used the Query Builder to create the "FillByModel" and "GetDataByModel" functions and it all returns the correct data from the database but when I run the page that I have the ReportViewer control on, it gives me the above error. I have no idea what that error means and after Googling the crap out of it and trying everything I have no idea how to resolve it.
Here is the .aspx code for my ReportViewer object:
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
<LocalReport ReportEmbeddedResource="Paint_Reporting.Report3.rdlc">
<DataSources>
<rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="LOL" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OnSelecting="ObjectDataSource1_Selecting" SelectMethod="GetData" TypeName="PaintModelNumberDetailTableAdapters.PAINT_MODELNUMBERDETAILLISTINGTableAdapter"></asp:ObjectDataSource>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
Could someone help me figure out this error?