Telerik Forums
Reporting Forum
1 answer
102 views
Hi.

Is it possible to know how much of page will be used before print it? (The data is dynamic)

The ideia is to know how much of page will be used to decide if I will print in only one page like below or two pages.

customer receipt
some data printed

-------------------------
company receipt
some data printed

If customer receipt pass the size that I tought then I will use two or more pages.

Best regards

Wilton Ruffato Wonrath
Ivan Hristov
Telerik team
 answered on 11 Jul 2013
4 answers
129 views
I installed the Telerik components (TelerikControlPanelSetup_2013_2_625.exe) that I need for the project I'm working on. However, I still get, "The type or namespace name 'Telerik' could not be found (are you missing a using directive or an assembly reference?)" when trying to compile. 

The red "Telerik" in the code does not have a "resolve" context menu item, as one would expect. I do have the following in my References for the project:

Telerik.Reporting
Telerik.Reporting.OpenXmlRendering
Telerik.Reporting.Service
Telerik.Reporting.XpsRendering
Telerik.ReportViewer.WebForms
Telerik.Web.Mvc

Perhaps the version numbers are mismatched? They are:

Runtime version: v2.0.50727
Version: 7.0.13.220

These may differ from what I downloaded (presumably the latest), but when I tried to download/install the older version (referenced in our internal install list, namely TelerikControlPanelSetup_2012_2_809.exe, the install process fails. Those woes are detailed here:

http://www.telerik.com/community/forums/reporting/telerik-reporting/unable-to-install-components.aspx

So, are the Telerik components not recognized because the ones in my References are the older versions, which I do not have installed? If so, why do they not sport a warning or error icon?
Peter
Telerik team
 answered on 11 Jul 2013
7 answers
207 views
This is probably not the best place for this, but I didn't see anything more appropriate. In order to get a project I'm working on compiling again (new machine, have to reinstall and reconfigure a gazillion things), I need to install Telerik components. However, when I try to do so, it tells me it must first download an updated installer. I agree, and it runs for awhile and then crashes, telling me:


Telerik.CommonInstaller.ControlPanel has stopped working

A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.


So what can I do to install?
Stef
Telerik team
 answered on 11 Jul 2013
3 answers
150 views
Software:
Microsoft Visual Studio 2010 Professional (Ver 4.0.30319 SP1)
Telerik Reporting (6.1.12.611)
Telerik Report Viewer (6.1.12.611)
Windows 7 Professional 64-Bit (SP1)

Problem:
Opening a designer file for a Telerik Report causes an error to occur (Screenshot attached). 

Actions Taken:
I've attempted to upgrade Telerik using the "Upgrade Wizard". Once it sees all of the reports it gives me the option to upgrade to version "6.0.12.215". 

Limitations:
In one of my reports, I use the Telerik.Reporting.InstanceReportSource class. This class was implemented after the 6.0.12.215 class from what I've read and I therefore cannot roll-back the release of Telerik that I use. It is preferred that I do not change the release of Telerik that I use at all.

Additional Information:
One of my co-workers can open the report files just fine using the same .dll references that I use since they are checked into Subversion. He can also see the reports locally when running the web application. I can not see the reports on my local copy of the application, instead I get a 503 (Service is unavailable) error. Neither of us have un-committed local changes. Our code base should be the same. 

I hope I've covered everything. I hope to hear back soon, thanks!
Stef
Telerik team
 answered on 11 Jul 2013
8 answers
405 views
Hi

I have this error on a Report with a PictureBox and large images (> 2MB) :

An error has occurred while processing PictureBox 'Foto1': Unable to create the store directory. (Exception from HRESULT: 0x80131468) 

The error appears only on the hosted site and not on my PC.

Target Framework: 3.5
Reporting version: Q3 2012 -  6.2.13.110

Attached the screenshot of the error.

Thanks in advance
Simone
Chavdar
Telerik team
 answered on 11 Jul 2013
7 answers
227 views
I made this a simple as possible.
I though maybe it had to do with master page nesting and displaying in a popup window. So I created just a basic webpage and I can print it just fine but nothing displays in the ReportViewer other than page 1 of 18. It does not display when running in VS2012 or when deployed to the website.
It used to display before I upgraded Telerik Reporting. It will display fine in Chrome.
This problem presents itself on all machines that try to use the webpage on our intranet.
I have tried everything that I have seen in the forum, but have had no luck.

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Billing.aspx.cs" Inherits="Wysocki.Farm.Intranet.Billing.Billing" %>
 
<%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=7.0.13.426, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
         <style type="text/css">           
        html#html, body#body, form#form1, div#content
        {  
            height: 100%;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <div id="content">
        <telerik:ReportViewer ID="ReportViewer1" runat="server" Height="100%" Width="100%" ViewMode="PrintPreview" ></telerik:ReportViewer>  
    </div>
    </div>
    </form>
</body>
</html>

 

 
I also tried:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Billing.aspx.cs" Inherits="Wysocki.Farm.Intranet.Billing.Billing" %>
 
<%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=7.0.13.426, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %>
 
<!DOCTYPE html>
 
 
<head runat="server">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta content="text/html; charset=UTF-8" http-equiv="content-type">
    <title></title>
         <style type="text/css">           
        html#html, body#body, form#form1, div#content
        {  
            height: 100%;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <div id="content">
        <telerik:ReportViewer ID="ReportViewer1" runat="server" Height="100%" Width="100%" ViewMode="PrintPreview" ></telerik:ReportViewer>  
    </div>
    </div>
    </form>
</body>
</html>
Stef
Telerik team
 answered on 11 Jul 2013
4 answers
151 views
I have report with enabled localization for English (default) and German. When I change some inner text labels (such as "chart1.PlotArea.EmptySeriesMessage.TextBlock.Text", "chart1.PlotArea.YAxis.AxisLabel.TextBlock.Text" etc) they change in Report.resx and Report.de.resx simultaneously. Why? How can I specify different texts for different languages?
Stef
Telerik team
 answered on 10 Jul 2013
2 answers
171 views
hi:
How to change the default tips like 'Done!Click 'Save' to download the file' in sliverlight application?
Squall
Top achievements
Rank 1
 answered on 10 Jul 2013
2 answers
851 views
I have created a report which is displaying data fine using OpenAccessDataSource to retrieve from my database Model.

In the page header I have a text box which should display a string value retrieved using a database query. How can I achieve this? I have looked at adding a second OpenAccessDataSource to the report to run the query but I don't think it is possible using this method. I'm quite new to the ORM concept so apologies if there is an obvious answer.
Karen
Top achievements
Rank 1
 answered on 10 Jul 2013
4 answers
1.5K+ views
Is there a way that I can set up an option to allow users to select the Page Size in the Report Viewer? I have reports with Page Setting set to A4, but users would ideally like to be able to select between A4 and Letter size.
Karen
Top achievements
Rank 1
 answered on 10 Jul 2013
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?