How can i refresh the Crystal Reports’ report data with C# as desktop application. I have create my report but i want to refresh it’s data each 2 minutes without clicking any button. Is it possible?
How can i refresh the Crystal Reports’ report data with C# as desktop application.
Share
It depends on which version of Crystal Reports you’re using but I did this in VB.net with Crystal Reports 2008 using a timer control and using the following code;
crvActive is the Viewer Control on the form, crxReport is the ReportDocument object. I hope you can translate this into C# and bind it to a Timer event.
Good luck.