Skip to content

Tutorial

Geek648 edited this page Jan 24, 2013 · 10 revisions

(to be completed)

How to use the Designer

Please refer to the Create New Report page.

How to use the Viewer in your application

Please refer to the Winform Viewer page.

Calling the Viewer exe directly from your application

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.

Clone this wiki locally