Click here to Skip to main content
15,914,350 members
Everything / Report viewer

Report viewer

report-viewer

Great Reads

by yuvalsol
Set the format of a SSRS date parameter apart from the SSRS report localization
by Hussain Patel
In this article I will show how to display an SSRS report in ASP.NET MVC application.For this demo I am using Visual Studio 2012, ASP.NET MVC 4 - Empty Template, an existing SSRS report deployed on SSRS Server and a nuGet package.

Latest Articles

by yuvalsol
Set the format of a SSRS date parameter apart from the SSRS report localization
by Hussain Patel
In this article I will show how to display an SSRS report in ASP.NET MVC application.For this demo I am using Visual Studio 2012, ASP.NET MVC 4 - Empty Template, an existing SSRS report deployed on SSRS Server and a nuGet package.

All Articles

Sort by Score

Report viewer 

8 May 2016 by Kornfeld Eliyahu Peter
You have to understand, that the very moment you display something on a web page that content is on the end user's machine...So even you prevent from downloading the pdf file behind the report, the end user can save it page-by-page (like paging and hitting 'Print Screen'), so the report is...
27 Jun 2016 by OriginalGriff
Just concatenating byte arrays won't do anything useful - DPF is a "container" format, so just "bolting" two containers together doesn't produce one big container. Any more than stapling two bags of sugar together would create a bigger bag full of twice as much sugar...Have a look at this:...
30 Jun 2016 by Dave Kreskowiak
It would appear that your SQL Server is setup for Windows Authentication only and you're trying to pass sn SQL login in the connection string.You have to modify the SQL Server to allow Mixed authentication, Windows Auth and SQL auth.Also, using the SA account to do this stuff is a...
5 Oct 2016 by David_Wimbley
Your error is pretty clear that you have a version mismatch. Quote:uses 'Stimulsoft.Report, Version=2016.1.0.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a' which has a higher version than referenced assembly 'Stimulsoft.Report' with identity 'Stimulsoft.Report, Version=2015.2.0.0,...
17 Jan 2022 by Richard Deeming
If you want to set the header via code, the simplest option is to add another parameter, pass the required title in that parameter, and set the text box's text to that parameter. Otherwise, you could use an expression for the text box parameter,...
13 Mar 2015 by Member 11428137
You also need to set the zoom mode:reportViewer1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.Percent;
27 Apr 2015 by Sergey Alexandrovich Kryukov
These days, I strongly recommend the only legitimate and really good setup tool, first Microsoft Open-Source project: WiX Toolset:http://en.wikipedia.org/wiki/WiX[^],http://wixtoolset.org/[^].Not only it is open-source, this is the project fully compliant with MSBuild project standard....
22 Apr 2016 by Richard MacCutchan
See iReport Designer | Jaspersoft Community[^].
27 Sep 2016 by David_Wimbley
You don't have log4net on your server. When you deploy your project to the server, make sure that a log4net dll is there...that is what your error is saying.Re-reading your question here are some options for you to try:Crystal Reports error when deployed..Could not load file or assembly...
15 Nov 2016 by abboudi_ammar
Good evening, I try to display an image in a reportViewer from a send path as a parameter. But the result I get is an image in X formWhat I have tried:public...
2 Dec 2016 by Richard Deeming
You're getting that exception because ReportViewer1 has not been set to an instance of the ReportViewer class.To find out why, you'll need to debug your code.NB: Rather than trying to create and invoke a WebForms page, you might want to look at using a proper MVC report viewer library -...
24 Jul 2017 by Sheila Pontes
Hi, Install the reportviewer in your visual studio 2015. If the reportviewer already had install, install again. Depending on the version of visual studio, the reportviewer does not install. I had problem with visual studio 2012 express. ReportViewer 2015 in Visual Studio 2015 | The ASP.NET...
12 Feb 2018 by RickZeeland
You can download the Visual Studio Community Edition for free: Downloads | IDE, Code, & Team Foundation Server | Visual Studio[^] It's free for non-commercial use (and small company use I think). The follow Walkthrough: Creating a ReportViewer Report, Walkthrough: Creating a ReportViewer...
4 Feb 2019 by Maciej Los
As is stated here[^] and here[^] there's no simple way to create dynamic columns in RDLC report at runtime, becuase an RDLC file is bit complicated XML file. Seems the only way to achieve that is to change to RDL. For further details, please see: Report Definition Language (SSRS) - SQL Server...
23 Feb 2020 by Maciej Los
Please, read this: Lesson 6: Adding Grouping and Totals (Reporting Services) - SQL Server Reporting Services (SSRS) | Microsoft Docs[^]
23 Jul 2020 by Sandeep Mewara
See if any of the following works: 1. Set: this.reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local; 2. Define something like: this.reportViewer1.LocalReport.ReportPath = "Report1.rdlc"; 3. Try to set your...
21 Oct 2023 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...
22 Oct 2023 by Richard MacCutchan
See Get started with Report Viewer controls - SQL Server Reporting Services (SSRS) | Microsoft Learn[^].
30 Jul 2014 by Mohamed Mitwalli
I wrote custom code to supply username and passwordPublic Shared Function testimage(ByVal imageURL As String) As Byte() Dim request As System.Net.WebClient = New System.Net.WebClient() request.Credentials = New System.Net.NetworkCredential("Ftpuser", "1234567", "myPcname") ...
3 Aug 2014 by Federico Perez
Hi All.I.m a new developer (i´m student), I´m trying to generate a reportviewer passing parameters, I followed some tutorials of this site however does not work, always appears the following error."None provided any instance of data source for the origin of 'r_instructores' data."in...
6 Aug 2014 by Mufeed007
I need to print a report without showing report.In my form I have a save button. While clicking the save button the database is updating after the report displays. I can only print the report if users click the print button in the report. Now I need to print the report without clicking the...
1 Sep 2014 by Malıck Husnaın Alı
I Have created a report in report viewer and I want to show two tablix on one page of report viewer.For example if both tables have 10 rows to show then i want to show 5 rows of first table and 5 rows of second table on 1 page and rest of the rows show on next page like next 5 rows from...
1 Sep 2014 by Malıck Husnaın Alı
How can we group/attach two tablix in report viewer so that if one table is displayed then second table should also display in report viewer on one page.How can we manage it. Please Help me.Thanks
2 Sep 2014 by LCT KKL
Good day.Currently I've a RDLC report viewer, may I know how to catch the event of user click on print button in the toolbar? This is because I need to update db when user click print and second time to print duplicate when user print again.Thanks in advance.Rgds,Low
10 Sep 2014 by Afzaal Ahmad Zeeshan
I think you need to pass a string, and not a DateTime object. Try this, // take it as a string, string datefilter = TextBox1.Text;// pass it, cryRpt.SetParameterValue("orderdated", datefilter);
10 Sep 2014 by Parth Dotnet1
I have solved it, i was making mistake while writing formula in crystal report:it is now :{Command.date} = {?Orderdate} and correct.
11 Sep 2014 by hamza qureshi
Hi after long search on web,still i am unable to work with rdlc in asp.net. this is my first time working with rdlc.so i am having alot of issues regarding this. In web people are using db connections to populate reports.and some using object data sources. So my question is:Is it possible to...
11 Sep 2014 by AnvilRanger
Your situation is odd, but you have a few options1.Save this "manipulated" data back to you db and generate your report from that.2.Take this "manipulated" data and create some object in memory to hold it. You can use a datatable a dataset, or even a customer object. Then use said object...
16 Sep 2014 by TechSolution
Dear all,I am using visual studio 2010 with reportviewer 10. When I am using updatepanel with reportviewer it takes time to load in IE10. if we change the compatibility mode to 8 then it works fine. it works fine with Firefox and Google chrome also.what could be the possible solution?
21 Sep 2014 by peter brighton
I am trying to get a web page with a crystal report to work on my site. Everything works fine on my development server.I have added a crystal report that talks to an access database. The access database is on the domain and i believe in the correct location.The Web page that i have added...
28 Sep 2014 by Azzam Alrandi
Hello Everyone , This is my First participation here, I have been reading from this site for while and i am really impressed by you people, Developers You are The Smartest creatures ever, I am civil Engineer , However i am one of languages programming fans club but i am really having a...
28 Sep 2014 by Leena 206
try one simple thing, After adding Age and Country, stop your application, rebind the data source(refresh it, so that it will bring updated data column) and try to run it.
1 Oct 2014 by just1c3ss
my report viewer is displaying a report. I want to display another report on the same (one) report viewer but that error message displays: "The source of the report definition has not been specified."I tried...
1 Oct 2014 by Rohit R Chavan
If you are fetching the data from Dataset then create a new datasource for 2 report and mapped it with same Reportviewer control.or you may be missing thisLocalReport.ReportPath = @"../Reports/Report2.rdlc";to load LocalReport.LoadReportDefinition(fs);fs -> File Stream
10 Oct 2014 by yatheendraks
1. Null reference exception comes when rdl is integrated with aspx page.Same report works fine with reportserver url.2. Does VS2010 support reportviewer 8.0.0.0, if not what could be the solution.
29 Oct 2014 by DoomedOne
Hi everyone, I have a trouble modifying an old report, client wants to add a graphic in a report, Visual studio reporting services (no Crystal), not so hard I think myself, but now i'm struggling with an error: Could not load file or assembly 'Miscosoft.ReportViewer.DataVisualization,...
10 Nov 2014 by DoomedOne
I solved it, by replacing Microsoft.ReportVierwer.DataVisualization.dll from other development PC, delete reference to it from the proyect, re-add reference in the proyect.Now works.Regards
19 Nov 2014 by Vinit Mumbai
Hello Every One,Good Afternoon !! Can someone please Help Me ? I have created a report using Report Viewer, i have 2 tables i am able to get the data from both the tables, problem is something like below.In one table purchase are saved. & in other all my sales saved.now what i...
20 Nov 2014 by Praneet Nadkar
Hi Vinit,Why dont you do that by writing a query in your database and returning you table from their. This way you can easily bind your table to report and show the data and manipulation and maintenance will also be easy.
5 Dec 2014 by DamithSL
first check m_previewService.FieldType is not null and proceed with GetMethod call
7 Dec 2014 by roshni gupta
I am calling .rdl report from aspx page. Below is the code-: MyReportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote; MyReportViewer.ShowCredentialPrompts = true; MyReportViewer.ServerReport.ReportServerUrl = new Uri(@"http://ingsdfsdfgfd/Reports");...
7 Dec 2014 by KaushalJB
Please refer this links :1. AppPool Permission Issue with Accessing Report Server2. The permissions granted to user ' are insufficient for performing this operation. (rsAccessDenied)"}
12 Jan 2015 by Member 11303872
I am creating a site using ASP.net in Visual Studio 2010 and am having trouble with the Report Viewer control. I am trying to use one report viewer control and set the report name and data sets dynamically. I do not have an SSRS server available so all of this is internal to the application. ...
13 Jan 2015 by Member 10966216
Hi friends,I'am new using report viewer and I would like to know if you have an excellent example using the reportviewer control and load it locally in vb.net 2010 or 2013.I have 1 TableAdapter within a Dataset. I already designed the Report using the TableAdapter created which expects a...
16 Jan 2015 by santosh.yadav198613
Looks like you added a parameter in your report.just remove that parameter.
16 Jan 2015 by Member 11303872
I should have marked this as resolved. It did not have to do with a parameter, I had to prefix the code-behind with if (!Page.IsPostBack)I found this out by stepping through the code and having my break-point hit twice. Rookie mistake. Everything is working exceptionally well now. Thanks for...
27 Jan 2015 by roshni gupta
I am trying to convert rdl report to rdlc reports using below linkhttps://msdn.microsoft.com/en-us/library/ms252109%28v=vs.90%29.aspx[^]Below is the error i got doing the same. Please advise.The Report Viewer Web Control HTTP Handler has not been registered in the application's...
27 Jan 2015 by deepakdynamite
Try out :http://forums.asp.net/t/1729518.aspx[^]
29 Jan 2015 by roshni gupta
After converting rdl report to rdlc report. I am getting below error in sub report display. The subreport is not displying in main report.One or more parameters were not specified for the subreport, 'rptchildData', located at: C:\SSRS\VS2010Repor\SubReport.rdlc.Thier was no details...
29 Jan 2015 by /\jmot
This error message hints that either the report parameter has not been passed from the parent report to the child report or that the wrong format of report parameter or an unacceptable value for the report parameter has been passed from the parent to the child report (I mean the subreport when I...
10 Feb 2015 by Maideen Abdul Kader
Hi.I have one issue to pass the parameter into Report viewer HeaderMy Scenario is I select two date (from Date and End Date). Data is populate and work fine. But I could not insert the date like (Sales Report From : .... To)Date is text box. My Question is How to pass this date into...
23 Feb 2015 by gonzaloleon
Hi all!im having troubles with my application to show a report in reportviewer 2010. Im getting this error:************** Texto de la excepción **************Microsoft.Reporting.WinForms.LocalProcessingException: An error occurred during local report processing. --->...
26 Feb 2015 by Maideen Abdul Kader
HiI have an issue in report viewer PrintingPaper size is Width:21 cm and Height:13.5 cm. If I try to set in report property using custom size, it will automatically changed to Landscape. But Paper (computer form) in Portrait.Pls Help me how to set paper sizeThank you in...
13 Mar 2015 by Paramu1973
Hi,Iam using VS2010 Windows Forms Applications. I wish to PreView the report by 25% or 35%. Is it possible? The below codes showing only "WholePage" mode. It's not showing by ZoomPercent...Thanks for the helps...My...
12 May 2015 by yash00121
i created 2 reports 1 is billa4.rdlc and 2nd is billa5 i just want to load these two reports when user selects the options a4 or a5 . my current code is Try Dim P2 As New ReportParameter("pbillnum", billnoprint) ...
25 May 2015 by Manuele Camilletti
You could use Me.ReportViewer1.LocalReport.LoadReportDefinition(stream) to load the stream of the report or use Me.ReportViewer1.LocalReport.ReportPath(sPath) to load from fileUPDATE:Me.ReportViewer1.LocalReport.ReportPath = sPath
12 May 2015 by Member 11581003
I am very new to ASP.NET MVC. I am trying to incorporate .rdl file in ASP.NET MVC using an .aspx file. I created a .rdl file in SSRS. And an .aspx file in ASP.NET. Added ScriptManager and Reportviewer to it. Set the ProcessingMode="Remote", gave the correct path for ReportPath="" and the report...
9 Jun 2015 by Prasad Avunoori
Hi,Next button is not working in ReportViewer.When ever i click on Next button it's unable to navigate to the next page and sitting in the same page.Please find below technologies i am using:ReportViewer 11.0MVC 4 aspx View engine.Note: Pagination works fine in Report server...
22 Jul 2015 by User 10132546
I think that your problem may be that you don't have a route set up to the action on your controller:public ActionResult ReportViewer(string projectname, string controllername, string functionname, string ReportType, string ReportName)For this to work, you would need to have a route set up...
6 Aug 2015 by MohamedEliyas
' alt='' Width="200" Height="140" ...
2 Nov 2015 by Muhammad Salah
I added An Action "Go To URL" To Textbox in Tablix in a Rdlc Report When I Add URL Like "http://www.google.com" The Report Read This URL Well and When I Click This Textbox The Browser Start With This URL I Tried To Change This URL to Navigate To an Image On My Local Host Like...
7 Nov 2015 by Muhammad Salah
I am working on Windows Form Application Connected to a Sql Server database that contains a path of Images on localhost I Created Rdlc Report To Retrieve Data From The Database and I Add Column To My Report That Contain Image Paths I wanna to make a click event on this column to allow user when...
15 Nov 2015 by Member 8345599
I have an RDL report (built with Report Builder 3.0 SQL Server 2012) that has tables which are visible based on expression. When I chose Run, they are appropriately hidden or visible. However, when I chose print or take to pdf, all tablix are printed, even if they are invisible in the run...
20 Nov 2015 by gelewyc
Hello I was given the task of migrating our reports (*.rdl) off our Report Server (SSRS 2008) and onto the same server where the web app is running ( using *.rdlc )(1) I havent been able to find anything explaining how to access and reference multiple reports without hardcoding them as shown...
28 Nov 2015 by Maciej Los
Take a look here:Web.config Settings for ReportViewer[^]Troubleshooting Internet Information Services[^]Debugging HTTP 500 - Internal server error with Windows Azure SDK[^]HTTP 500 Internal Server Error[^]
3 Dec 2015 by Member 12138525
I have done it there is a problem of DataSet
22 Dec 2015 by Jesse James Khan
why doesn't my rdlc display the html content ? I have saved encoded html formatted text in Nvarchar field in database.ANDSLASKNDKLSNALNDKLANDLANNDNow in RDLC, On the General tab, i have selected the HTML- Interpret HTML tags as style radio...
5 Jan 2016 by ukjohnct
I have created a report in VS 2013 that gets user data from a table in sql using c#. I have connected to sql and have a dataset for the table.I quickly created it by saying I wanted a report based upon a sql table.I have a report that displays the data, however now I want to add the user...
18 Jan 2016 by Member 12043068
I have 4 rows in my XML table. I need to create 4 textboxes with values from these rows.I am taking help from Generate RDLC dynamically - Table of ReportViewer Tutorial[^]
27 Jan 2016 by Maideen Abdul Kader
HiI developed the asp.net project for trading. Working FineBut We facing Printing Delivery Order/ Report. Currently very curcial issue is print statement.Now we select Account Number of customer and generate Delivery Order and export intoPDF then we print this.Our client has...
27 Jan 2016 by Beginner Luck
Displaying , Exporting and Printing Crystal Reports in ASP.NET[^]Try this one from patelsachin
30 Jan 2016 by Member 12207410
I am trying to use report viewer to make a printable form filled out from a database entry. I have already setup the database connection, datasets and queries and linked them to the report. When I try to render the report some of the fields are filled out correctly and others are missing. For...
4 Feb 2016 by Member 12043068
[This is a rough illustration 1st part.][1]I subscribe to the subreport from my main report. Now the subreport handler function decides the data in the subreport. The 3 column data in the subreport are of int type. Also the Data1 is the parameter for the subreport. So you understand that...
10 Mar 2016 by LC Garcia Rocha
I need to insert an image in Reporting Services, but that image has to be in line with text containing my report, I am working with a table that tends to grow to the right, the image has to be placed at the right end of my report, it is the bigger say to the right the image has to be placed at...
18 Apr 2016 by chetanamre87
Hi Experts, We are exposing our SSRS reports through the reportViewer page present in the default BIDS installation. All the features in the report work fine in IE. But when reports are opened on other browsers like chrome, firefox, safari some features like 'Print' button, Datepicker seems...
22 Apr 2016 by Ma'd Saeed
I have downloaded iReports Plugin and I have installed it successfully and also I've designed my report. Now, how can I call it and show it?What I have tried:File file=new File("demo.jrxml"); InputStream stream=new FileInputStream(file); JasperDesign...
3 Jun 2016 by emilius94
I am trying to sum a column in a group footer.The column calculates the revenue made from each customer for the month.The revenue for each customer gets calculated by the following expression:=Switch(Fields!currency.Value = "US $",Switch( Fields!RatePer.Value = "Load",...
19 Jul 2021 by Sabhani Vipul
i hve apply Right-click the column or corner handle of a tablix data region, and then click Tablix Properties.In Column Headers, select Repeat header columns on each page.but not repeat column header...What I have tried:1) Right-click the column or corner handle of a tablix data...
24 Jun 2016 by NagaNimesh 11474558
hi you have to take matix table then go for how many coluns u want :).dont take textbox r groupbox.
26 Jun 2016 by Member 1973341
Getting the error "The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file" even after adding it in web.config.What I have tried:Added the following in web.config
1 Jul 2016 by Frankie-10589807
Good day to you all. I developed an application in vb 2010 that uses reports processed locally. The application is working properly with the following connection string: "Data Source=192.168.1.222;Initial Catalog=ITEM_MGR;user id=sa; Password=michaels" But the each time i try to view the...
17 Jul 2016 by Member 11526191
I have created a report displaying a linear chart in stimul soft report. the chart is visible in stimul soft designer preview. but when I load the report in my website using stiwebviewer the chart is not visible.Loaded Report in StiWebiewerAlso when I export my loaded report in pdf...
28 Jul 2016 by vedsinghal
I am facing an issue with Crystal Report when I am passing GUID in selection formula field, crystal report run successfully but displayed blank report even I have data in database for same GUID.It works successfully if I remove GUID field from selection formula.I did lots of R&D (EVEN...
6 Aug 2016 by dabbourabd
hi every one I made windowsapplication using visual studio 2015I added reportviewer to my project (without database or dataset)in windows 7 every thing working, but in windows xp I got error only when I am trying to generate reporthow can I solve this problemthanks to every...
7 Aug 2016 by Member 12315030
An RDLC datatable was created with data arranged in 3 rows. Each row consists of approximately 18 strings, each separated by a carriage return and a line feed (vbCrLf). I want to bold specific strings in each row based on a condition, but have not been successful. Has anyone worked with RDLCs...
9 Aug 2016 by shms_rony
Hi AllI need to work with RDLC Reports instead of crystal reports But My Toolbox missing it's items I have only Crystal report itemsWhat I have tried:I tried to install Last version of SQL DataBase Tools and ReportViewer.msi and ReportBuilder.msi
9 Aug 2016 by Maciej Los
You didn't mentioned what version of Visual Studio 2012 you have installed, but i do believe that you use Express version. Neverthless...I'd suggest to download and install MICROSOFT® REPORT VIEWER 2012 RUNTIME[^]Now:1. go to the form designer2. right click on the toolbox then choose...
29 Aug 2016 by anil_kumar_bhakta
I would like to develop banded report like crystal report. I am using Visual Studio 2010.What I have tried:I have tried all possibilities from tablix group properties.
30 Aug 2016 by Member 12363973
In a rdlc report I have a dynamic row Name Subject Name.I have column in this table naming GPA which will show one value.Now I want to align the text middle in the column though the row is increasing.I dont have any row grouphttp://i65.tinypic.com/33oi8pc.png[^]The problem can be...
30 Aug 2016 by UnStable Messi
1st row under the menus. you'll see there these " B / U ". besides these you'll see three alignment buttons. center,allign right, allign left. select the textbox and press button which allignment you want to do. in this case pres CENTER button
9 Sep 2016 by RavonX
I have a table for our employees to view which we need to print and have them sign.To do this I'm using the ReportViewer (or trying to. I'm open to other suggestions).I've read this article but I don't think it's quite what i'm looking for - but close, and if this is the best there is...
9 Sep 2016 by RavonX
found the answer on this pageBinding-Datatable-to-rdlc-report[^]Basically:1) setup a new dataset with a datatable defined EXACTLY as your table is2) use mock dataset in the RDLC to bind to table / list / matrix / etc..3) link the table to the report...
27 Sep 2016 by Er. Puneet Goel
No log4net dll solves the issue but installing the Crystal Report Runtime is the solution. I used following link Crystal Report RuntimeThansk @David
29 Nov 2016 by Maideen Abdul Kader
Hi I have issue in asp.net project.I am using Reportviewer in project. In localhost, it is working fine, no issue. Once upload in web server, error prompt"System.Security.SecurityException: System.Security.Permissions.SecurityPermissionPls advice me.Thank You MaideenWhat I have...
2 Dec 2016 by HenryLdn
I have a problem with ReportViewer. I want to show some images like a grid as in the picture images in a row.What I have tried:I don't know how many images there are for each section. I read all images from file system and I can create a dataset with all in it.I've already read some...
5 Dec 2016 by Member 12472631
I created a website to view the RDL reports using ReportViewer control. In my development server(windows server 2008 R2), the site works fine. When I deployed the site in UAT server(windows server 2012 R2), the site is throwing error "Failed to load data" error in ScriptResource.axd. Thanks...
18 Jan 2017 by ahmed_sa
I work in visual studio 2015 windows form .I have textbox for name and combobox for country and button and report viewer controlI need when click button get value from text box name and combox country and show these values in report viewer ?How to do that by c# ?suppose i...
18 Jan 2017 by Jatinath
on your report viewer page; you can add parameters(there is option to do so) and through your coding you can assign text box values to your report viewer.e.g.rp1.parameters.add("@param",textbox1.text);try this way.if things work for you accept the solution.
29 Jan 2017 by Zon-cpp
I solved my problem. :)when I was creating the project , the crystalReport version 10 had been installed on my system. therefor I choosed "crystalReportViewer version 10" from Toolbox Item.I uninstalled version 10 of crystal report and installed version 11. In next step, I deleted...
30 Jan 2017 by CHill60
There are a series of tips here on CodeProject that will help you on the topic of passing information between forms. The first one is here Transferring information between two forms, Part 1: Parent to Child[^] and there are links to the others within that article