-
Notifications
You must be signed in to change notification settings - Fork 204
Tutorial
(to be completed)
Please refer to the Create New Report page.
Please refer to the Winform Viewer page.
For the simplest way to present a report to the user, it is also possible to call the viewer exe via a system/Shell call, like any other command that can be issued from the command line (or batch file, Powershell, any other language etc) :
Dim ID As Integer ' VB.net
ID = Shell("""C:\Fyi\RdlReader.exe"" C:\Fyi\myreport.rdl", , True, 100000)
This gives you the power of RDL based reports in just a line or two of code, with both the report designing stage and the viewing/printing of reports taking place outside of the programming environment or application. This is ideal as an introduction to RDL reporting, and as a bonus the knowledge gained in the process may one day be useful if you progress to the full blown MS Server based reports system.