How to display all pages continuously in Crystal Reports? - vb.net

I have a question about Crystal Reports 2013.
I have a report with 11 - 13 pages data (dynamic). And I want to display all of them continuously / without any page break. So, I need to view next page just with scrolling, not with a button like Next Page.
Could you help me please how to do it in Crystal Reports 2013?

you can check this,
CrystalReportViewer1.SeparatePages = false;
Also check this link which say "Keep Togather" setting will help you.
http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=3196
http://scn.sap.com/thread/1649022(This is the last option I found)
Updated
I did not get any thing at crystal report side, the reason will be crystal report every time hit the db and execute whole code and redesign the page. So I don't think you can do this.
http://www.codeproject.com/Questions/87668/Showing-all-pages-using-scroll-in-Crystal-Reports
http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=7852
http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=547
You can give the facility in export option as pdf, but not at crystal report side.

No, Crystal Reports won't allow to display many pages continuosly.
I understand that hitting "next page" and waiting for reload is annoying. You can programmatically export a report in PDF, so that Adobe Reader will show pages continuosly.

peace be on you iwan,
please right click on CrystalReportViewer , tag
and see properties,
and set SeperatePages = False
my report pages are now continious without any break with scroll.
![enter image description here][1]

Related

Disable navigation on clicking Sub report from main Crystal Repert - VB.net

How to disable navigation to the sub-report when clicked on it? I have report with 1 sub-report that displays Company information and I need to disable it once it has been clicked by Customer.
it can be disable from crystal report viewer control.Use
CrystalReportViewer1.EnableDrillDown = False
this will work for crystal report 2008 or above.
Edits:
AS per comments by Question owner,in order to disable just navigation.there is no defined way.but it can be achieved by some other means.
"Create an empty text cell that is as wide as the report, and use it to "cover" the clickable fields to prevent drilldown.
Seriously, this is the only way we've found to do this. This is also documented on the BusObj support knowledge base (http://support.businessobjects.com/library/kbase/articles/c2013204.asp)"
for more information,Refer the link Disable Navigation

report viewer page break

I have a problem with ReportViewer in my application. I have a main report that consist of subreports. There is a subreport that fit into a page. But reportviewer inserts one more clean page and only after this clean page the next subreport starts. I don't want reportviewer to insert clean page. How to fix this problem? Please help.

VB.Net: Crystal Report shows different results when run

I created crystal report in VB.Net... When I clicked report preview, it shows correct result...
When I run the program, at first click of print, it will shows different result, I have to click other reports then go back to the one i want to print to see the correct output...
In the crystal report i have 3 groups and a subreport in the last group...
What do you think is the problem? Please help! God bless :D
is "Save Data With Report" in report designer checked?
[the flag is visible when you see report preview in designer]
This flag causes unexpected behaviours (and many headaches to me).

RDLC Report showing data on other page if data is more

I have a bill application in winforms using reportviewer and showing rdlc report in it, I have a main report and a subreport in it
now the problem is that when i have less than 40 items it shows the report fine, but if its more than that the data comes from next page, please see the reports and ourput
Main Report
SubReport
Normal display when 25 records
When it is 40 records pg1
Second page
any help will be appriciated
try Unchecking Keep together on one page if possible option in Page break options.
I'm using vs2010, and it looks like you're in 08? so it might be a little different but I'll give it a try (mostly because I am looking for some help as well and I know how frustrating it is using this when there's not a lot of "quality" answers out there for specific problems).
In the subreport rdlc file, make sure that the "PageBreak" property (on the table containing your columns) isn't set to "start." I would just set it to "none."
What I believe that is happening is that it's moving it to the next page because it won't fit on the first page. what you can do to try to get around that is include everything on the main report in a rectangle (in the rectangle, set pagebreak = none, and keeptogether=true [I'm not sure if you actually want keeptogether=true... if it squeezes everything onto one page by resizing it set it to false]).
Hope I helped

Display reports with non-modal messagebox

Am writing a VB.Net app written in VS2010. This displays some reports in several forms. (Am using Crystal Reports though this is incidental to the problem). The user needs to be able to check these, then confirm if he wishes to run the update process or abort.
My first idea was to ask the user to reply using a messagebox. But of course this is modal, so the user cannot browse through the reports.
I thought of other options but each seems to have problems:
- export the reports as PDFs, then display report in external Adobe Reader Window using System.Diagnostics.Process.Start("AcroRd32.exe", filename). This seems messy.
- create a non-modal message box or equivalent. This loses any concept of program flow, so am unconvinced by this
What ideas do you have please?
You should already be using a form to display the report(s). Put all the reports on the same form with scroll bars enabled and add a button to that form for the user to 'Update Process'.
You may come up with a better display based on how many reports you want the user to look at - like a drop down at the top with list of reports in it OR a radio button list on the left with reports listed etc.