Telerik Forums
Reporting Forum
3 answers
140 views

Hello!


On high resolution displays (for example my Dell M3800 laptop with a 3600x1800 display)

and with scaling setting of 200% the height of the page seems to be wrongly calculated.

When I set scaling to 100% in the Display Control Panel,

it works as expected - but of course the rest of the application is then too small to use.



Has anyone else experienced this?



Regards

Erwin



Stef
Telerik team
 answered on 28 Jan 2014
2 answers
175 views
I'm using the following code to try to render a Telerik sample report from an ASP MVC Web app and a Console app directly to a printer with no UI.  The report prints, but it is scaled about 50% and I don't know why.  Running from a WPF app or Windows Service it prints nicely.  Why might this be?

Telerik.Reporting.IReportDocument report = new ListBoundReport();
 
// The standard print controller comes with no UI
System.Drawing.Printing.PrintController standardPrintController =
    new System.Drawing.Printing.StandardPrintController();
 
var processor = new ReportProcessor();
processor.PrintController = standardPrintController;
 
Telerik.Reporting.InstanceReportSource instanceReportSource =
    new Telerik.Reporting.InstanceReportSource();
 
instanceReportSource.ReportDocument = report;
 
var settings = new PrinterSettings();
processor.PrintReport(instanceReportSource, settings);
Stef
Telerik team
 answered on 28 Jan 2014
2 answers
1.2K+ views
Hi, how do I create a Telerik.Reporting.Table Dynamicaly?

So far I have:

Dim

 

panel1 As New Telerik.Reporting.Panel()

 

Dim Table1 As New Telerik.Reporting.Table

 

Table1.Location =

New Telerik.Reporting.Drawing.PointU(New Telerik.Reporting.Drawing.Unit(0, Telerik.Reporting.Drawing.UnitType.Cm), New Telerik.Reporting.Drawing.Unit(15, Telerik.Reporting.Drawing.UnitType.Cm))

 

Table1.Size =

New Telerik.Reporting.Drawing.SizeU(New Telerik.Reporting.Drawing.Unit(23, Telerik.Reporting.Drawing.UnitType.Cm), New Telerik.Reporting.Drawing.Unit(10, Telerik.Reporting.Drawing.UnitType.Cm))

 


Table1.DataSource = ADatasource

 

panel1.Location =

New Telerik.Reporting.Drawing.PointU(New Telerik.Reporting.Drawing.Unit(0,
Telerik.Reporting.Drawing.UnitType.Cm),
New Telerik.Reporting.Drawing.Unit(1, Telerik.Reporting.Drawing.UnitType.Cm))

 

panel1.Size =

New Telerik.Reporting.Drawing.SizeU(New Telerik.Reporting.Drawing.Unit(21, Telerik.Reporting.Drawing.UnitType.Cm), New Telerik.Reporting.Drawing.Unit(21, Telerik.Reporting.Drawing.UnitType.Cm))

 

panel1.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid

 

 

panel1.Items.Add(Table1)

 

Report3.Items.Add(panel1)

 

ReportViewer1.Report = Report3



but the table doesnt show , any help please?

endbil
Top achievements
Rank 1
 answered on 28 Jan 2014
1 answer
98 views
Hi,

I followed the instructions here:
http://blogs.telerik.com/telerikreportingteam/posts/13-03-26/telerik-reporting-in-mvc-sure-it-takes-8-quick-steps-

to add a report to a webpage.

But, when I open the page, the toolbar icons are ridiculously oversized. (image of my webpage attached)

Is there a fix for this?

Help please,
Thanks
Peter
Telerik team
 answered on 27 Jan 2014
2 answers
1.0K+ views
sorry. I'm beginner.

I want GrandTotal.

How to Sum Textbox1.value + textbox.value2 ?
Hinata
Top achievements
Rank 1
 answered on 27 Jan 2014
1 answer
58 views

Hi Team,

 

I am facing an issue while designing a telerik report using visual studio 2010.

If I create a fresh report by following all the steps in wizards, where I can choose the number of column of my choice and finishes the wizard completely.

 
Then I am able to see/show the report on web page, but if later I am required to incorporate few more column out of my DataSet then I couldn’t see the Data Layout window anywhere in VS2010 to incorporate the other columns.

 

Please help me out how can I find out the data layout window (explorer sort of...) into the VS2010.


Regards,
Shyam
Stef
Telerik team
 answered on 27 Jan 2014
1 answer
80 views
Is there a way, using the web report viewer, to have a drill thru report open in a new window?  I have my 2 reports running great, but from a performance perspective I would like the drill thru/detail report to open in a new window so that the original is still accessible to the user without the report having to be regenerated when they go back to it.

Any options would be appreciated

Chris
Nasko
Telerik team
 answered on 24 Jan 2014
1 answer
254 views
Hi team,
I am new for this telerik reporting, I want to create using parameter pass to data-source using stored procedure parameter then i want display data in Report.
Ex: my SP like this

select * from table where Id=iId;   So I need to pass value for this iId value through code behind and get that datasource to report.

For this how we pass value report parameter, i am getting report parameter  value like this.
report1.ReportParameters["iId"].Value = "2";

But I am not able to set this value available members in datasource parameter value is setting 0. So how can i force to pass this code behind value to that datasource. Data is not displayed because of not passing value to my datasource storedprocedure.

Please give reply ASAP.

Thanks and Rgd's
Surendra Reddy.


Unknown
Top achievements
Rank 1
 answered on 24 Jan 2014
1 answer
239 views
Hello,

I have a User control built like the example in the Reporting documentation("How to: Add report viewer to a WPF application"), where the report viewer control is added to the user control, and the report source is set in the control constructor. I then open the report by adding the control to a RadPane and adding it to the Main WPF Window. My question: how can I set the report source from outside the control before or after I add it to the RadPane? Here's how I open the report:

Grid

 

 

grid = new Grid();

 

grid = PanelGrid();

 

 


TextBlock title = new TextBlock();

 

title = DisplayText();

title.Text =

 

"PSR Report";

 

 

 


 

 

 

Frame addFrame = new Frame();

 

 

 

//Report Viewer is the control with the embedded viewer

 

// How can I specify the report source from here??
//
addFrame.Source =

 

new System.Uri("/ReportViewers/ReportViewer.xaml", UriKind.Relative);

 

 

 


//Create RadPane

 

 

 

RadPane PSRPanel = new RadPane();

 

PSRPanel.Header =

 

"Report Viewer";

 

PSRPanel.Content = grid;

 

 


MainWindow.mw1.radPaneGroup.Items.Add(PSRPanel);

 

 

 


Grid.SetRow(title, 0);

 

grid.Children.Add(title);

 

 

Grid.SetRow(addFrame, 1);

 

grid.Children.Add(addFrame);

Thanks,
Spencer

IvanY
Telerik team
 answered on 24 Jan 2014
1 answer
319 views
Hi all, I want to generate a bar code with the Coding GS1-128 and can not find it in the list symbology. How can I generate?. I'm using version 7.2.13.1016
Nasko
Telerik team
 answered on 24 Jan 2014
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?