Good day, I have a ReportViewer showing a report that is bound to a dataset. The dataset gets its data from a Access database backend. I have a separate form that allows the user to add/update/delete data. My problem is when the user makes changes to the data using the data entry form, the report does not reflect those changes. I have to close the entire program and reopen it before the changes take effect on my report. Can somebody help?
Me.transactionsTableAdapter.Fill(Me.transactions._transactions)
Me.ReportViewer1.RefreshReport()
I've been doing some readings online, and it seems that I need some code that rebinds data to the reportviewer at runtime, but so far I have not been able to solve this. Can anyone help me out?
Thanks so much.