Link to home
Start Free TrialLog in
Avatar of spen_lang
spen_lang

asked on

VB.NET Express and SSRS

Hi,

I am using "Microsoft Visual Basic 2010" to create a database application. Is it possible and could you point me in the correct direction of how I can display a SSRS report in my application?
Avatar of ValentinoV
ValentinoV
Flag of Belgium image

One of the options, the most common one, is to use the ReportViewer control.  You just drag it onto your form (if building a Windows Forms app that is) and configure it as expected.  Web apps are possible too.

There's some good documentation available on MSDN: ReportViewer Controls (Visual Studio)

The link above should help you to get started.  Let me know if you have any further question on this.
Avatar of spen_lang
spen_lang

ASKER

Is this option available in EXPRESS version of Visual basic as I cannot see it in the toolbox...
Aha, "Express", hadn't noticed that in the title!  So they must have left them out on Express Edition...  But perhaps we can do something about that.  I know you can add items manually to the toolbox by right-clicking it and then selecting the Choose Items... option.  So let's try that.  Please note it may take a while before the popup window appears.  You'll hopefully find the ReportViewer controls (there are two: one for WinForms and one for WebForms) in the .NET Framework Components tab.

Now, as you may already have noticed I don't have Express edition to try this out myself so I'm not 100% sure if those components will actually be installed.  If you don't see them in the .NET Framework Components list, you could try to install the redistributable first.  It can be downloaded from the MS site: Microsoft Report Viewer 2010 SP1 Redistributable Package

I'm also not sure if this fits within Microsoft's Terms and Conditions on usage of the Express edition so you may want to investigate that too...
OK thank you, if this is not possible I presume I could just run a webpage within my application to access the report server...
ASKER CERTIFIED SOLUTION
Avatar of ValentinoV
ValentinoV
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial