We have SQL Server 2008 R2 and Visual Studio 2008.
I have used the Report Viewer for displaying the reports in web application but all the R2 features are not rendererd properly in (Specially the trend images used).
I have tried to find the root cause:
1. The export functionalty is diplaying images but its not visible in webbrowser.
2. I tried to use the iFrames but simillar results i got.
Q: How i can fix the html content which is rendered but not displayed.
To solve the above problem i had to install the newer version of Microsoft.ReportViewer.WebForms (v10.0.0.0).
This is a patch provided by microsoft in visual studio 2010 SP1.
Please find the link below:
http://blogs.msdn.com/b/brianhartman/archive/2011/03/31/visual-studio-2010-sp1.aspx
Amazingly it solved all of my problems :)
Related
I develop some Crystal Reports for my various application in visual studio,
but today i am not able to see report properly.. in run time as well in Source code.
its shows as below image, i think may be some problem in my Visual studio, so i re install it.
but still facing problem.
kindly guide me which point i missed..
how to increase margin size in this
Note: i am using Visual studio 2008
I got the solution , I just Right Click On my report. Go to, Page Setup > Check 'No Printer', and increase the Horizontal Page Size. its Done
We have recently upgraded to windows 7 and have noticed that there are compatibility issues with my previous version of MS visual Studio 2005.
From taking a look around the web I believe that this issue is due to SP1 for Windows 7. My organisation will not get rid of SP1 just for one or two developers so I need to figure out a work around.
This is the issue...
I have an old MS visual studio website that has a report located on the home. This report was created in MS VS 2005.
Other versions of Visual Studio in have are 2010 and 2012. I have tried to convert the 2005 report into 2010 and this does state that it has been converted but I still cant open or do anything with the report. My 2005 web site is too large to convert or move into 2010 and we can still maintain this 2005 site by opening this up in 2010. It just seems to be a problem with the 2005 report.
I'm running out of options to make a simple change to a report. Anyone else got any ideas? I have even tried to create this report in 2010 and then add this to my 2005 site but this doesn't work.
Regards
Betty.
You say a report and then say that it is a whole site? Why not run a second site in tandom? Make a whole new site and name it differently like
http:// (servername)/Reports2012
Then put reports there. You cannot open a converted report in a site that is for a prior version, you can view it in Microsoft Business Intelligence Studio, BIDS, which is an add on to Visual Studio. If you can upgrade but cannot view it there, there is something wrong with the language file potentially. I would then make a copy of it in the old 2005 BIDS, then take that copy and see if you can upgrade that and if it will work. If that STILL does not work you could make a test report in BIDS 2010(SQL 2012 works on VS 2010, yes weird but true) to assure you can create reports there. Many times people try to open SQL Server 2012 Reports on VS 2012 and it won't work. You need 2010 add on you can find it under All Programs>MS SQL Server 2012>SQL Server Data Tools(They made the naming very confusing as it opens up and display BIDS, but calls itself 'Data Tools' under the programs). Every other version of SSRS lines up with that year of SQL Server to that year of VS. Not 2012.
If the report upgrade still does not work, yet you can create a run a new report fine; I would suggest potentially opening up the file dircectly. Your projects in a Reports solution generally have a file '(something).rdl' that RDL is the actual file and is just XML markup of the language. This is a last resort as you are essentially trying to do manually what the upgrade is failing to do in the xml. You merely copy a working report, and then paste the parts of the old report into their correct sections. Ensure the XML is valid as well.
If you cannot manage that to work you will need to recreate the report from scratch.
I have some issues with my reports since I have updated them to VS2010 format.
Even though I have modified references to from v9 to 10 for Microsoft.ReportViwer.Common and Microsoft.ReportViewer.WinForms as well, when I try to type code. in a field, what is after "Code." is always underlined with red and I get #ERROR instead of the value I want when I print the report. I know it is case sensitive and I double checked the spelling multiple times.
Moreover, I don't know why but I have errors with the Fields! syntax; I seem to have to use the Fields().value to get them to work (at the places I don't need to call custom code too)
These reports worked well before conversion (over 20 reports converted this way) but do not now. Seems like custom functions are not "seen" by the report designer. I tryed to make them public, shared; all I had is the same stupid #ERROR display.
I want them to work in VS2010 to avoid always having to modify them in VS2008 and then go back in VS2010
It's a winform application with framework 3.5
Any idea of what could cause that and what is the remedy?
Many thanks
Nico
There are a couple of ways to use custom code in SSRS. Firstly you can enter VB directly into the window under
Report -- >Report Properties --> Code
Another way is to write a custom DLL (which can be done in any .NET language of course), which then needs to be copied to both your dev machine and the production report server.
You then need to create references to that assembly in the project using:
Report --> Report Properties --> References (I assume you know this).
If you are not using your own custom assembly, and just using a reference to one on your machine then there could be some confusion on the server as to where to find the dll's. You may need to copy DLL's to the folder as indicated in the KB link below:
http://support.microsoft.com/kb/920769
When you drag a field onto a tablix or textbox, and have a look at the value expression, does it use the Fields!Fieldname.Value syntax? That syntax is natural to SSRS so it sounds like something seriously broken in your visual studio 2010 there if that is not working. I take it you installed visual studio 2010 to create web applications. What you haven't explained is which version of BIDS or SSDT you are using. If you are developing reports for SSRS 2008 R2 or earlier, then these are not compatible with visual studio 2010. There's no compromise there.
If you are developing for SSRS 2012, then you are using either SSDT by itself (which installs a shell version of visual studio 2010) OR if you already have visual studio 2010 then you need to install service pack 1 for VS2010 and then install SSDT from the SQL Server 2012 disc.
http://msdn.microsoft.com/en-us/library/hh500335(v=vs.103).aspx
I have built some reports in both VS 2005 and VS 2008.
In VS 2005 I have 3 tabs available on Design page - 'Preview' 'Layout' and 'Data'.
In VS 2008 I have only the 2 - 'Design' and 'Preview'
Can anyone pioint me in the correct direction as it is what is held in the 2005 tab of *'Data'* that I am looking for in VS 2008
This shows a very simple view of what SQL query's are being used and easily allows modification.
I cannot find this in VS 2008 and only a 'view code' option that shows all HTML code as well???
Any help much appreciated.
(the reason for me tryng to do this is the original reports were built in VS 2005 and have been converted to VS 2008 and now need editing and it would be much easier if I had a simple view of just the SQL query's in the reports)
I will answer my own question as I believe I have found what I am looking for.
Once you have enabled the 'Report Data' toolbar you can access datasets, build new ones and also isolate each sql query that is being used in the report design for easy editing.
My problem seems similar, but the situation is different. I'm using Windows Server 2003 64 Bit with Visual Studio 2010, Crystal Report 13.02.456 Runtime (64 Bit) for framework 4.0 and Crystal reports version for Visual studio 2010.
The report works perfectly in debug mode.
1.But when it is deployed on IIS at first it started giving jscript 'bobj' missing error.
2.Later I searched the internet and copied crystalreportviewer13 folder from IIS folder to my application root folder.
3.The error changed to 'Unsupported Operation. A document processed by the JRC engine cannot be opened in the C++ stack.'
Any help would be great, as i am unable to find any solution yet.
This problem can be caused by the path being incorrect when loading the rpt file. Could probably be other things too, but certainly that's one thing to check first.
See forum posts here, here and here