I am developing a WinForms application and starting to dig into the reporting functionality. This is a smart client app, using SQL Server Compact Edition, which will be used both on and offline.
From what little I have read, since this will be used offline, I will need to add a ReportViewer control to my app to display reports when disconnected from the network. To add this control, I must configure it for either Local Processing or Remote Processing.
When users are offline, they will need access to a small set of local reports; meanwhile, managers back in the office may like to take a look at reports hosted on our report server.
What is the best way to handle this? Is there a way to configure the control to handle both types? Can I have both type of control? Am I doing things waaaaay wrong?
Any help is greatly appreciated!