Hello, I have researched this for awhile and cannot find a solution. I have a DataGridView control which is databound by retrieving back a LINQ IQueryable resultset by using the following code:
DataGridView Populating Code:
dgReportResults.DataSource
= RunNoShowsReport(BeginDate
, EndDate, PatientID);
Now while the results are displayed in my DataGridView control, I cannot see them in a Print Preview dialog window. I am attempting to use the BlaiseBraye Printing component and I am wondering if the DataGridView contents need to be stored in a different object like a DataSet instead of simply passing the name of the populated DataGridView control?
I will post all working code once this is resolved for others to learn from, thank you.
Start Free Trial