This is a migrated thread and some comments may be shown as answers.

Questions about whether it is possible in Telerik Reporting.

1 Answer 348 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Fernando
Top achievements
Rank 1
Fernando asked on 27 Sep 2011, 12:16 AM
Good .. I am new to telerik reporting, I am studying the Free version, because  I'm search of a reporting application to implement in my project.

1 - Suppose, that I have records of patients in a sanatorium, and I have to print each on a separate medical history ... I can be done with telerik reporting.

2 - I would place a subreport in report at the bottom of the page, to appear at the end of each sheet. in the footnotes.

3 - If possible create events, that run in each cycle of a new line generation of reports. where specific activities.

4 - You can change position and change the size, using a base value of database, example:
  if (data.name == true)
        textbox.location = (data.X, data.Y);
        textBox.Size = (data.W, data.H);


excuse my bad English, so my ideas in Spanish writing to explain better.

------ Spanish.

1 - Supongamos, que tengo Historias Clinicas de Pacientes en un Sanatorio, y tengo que imprimir cada historia clinica en hoja separada... se puede realizar con telerik reporting.

2 - Se puede colocar en un reporte un subreporte en la parte inferior de la pagina, con el fin de que aparezca al final de todas las hojas. en el pies de pagina.

3 - Si es posible, crear eventos que se ejecutan en cada ciclo del reporte en la generación de una nueva línea de informes (detail) y realice actividades específicas.

4 - Se puede cambiar de posición y cambiar el tamaño te un TextBox, tomando de referencia un valor la base de datos, por ejemplo:
 if (data.name == true)  
       textbox.location= (data.X, data.Y);
       textBox.Size=(data.W, data.H);
 
5 - Telerik report me permite asociar en un solo PDF, varios reportes. me explico
Se solicita los reporte del un dortor, el doctor tienes asociados un conjunto de pacientes, ellos un conjuntos de reportes según el caso. la idea es que se quiere generar un reporte que contenga todos los reportes que se llame desde el doctor.
(Me enredo explicando esta idea en ingles.)

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 27 Sep 2011, 12:27 PM
Hello Fernando,

Thank you for your interest in Telerik Reporting and up to your questions:
  1. You have a Report Designer at your disposal, so you can arrange the layout in any way you desire. We're not sure what you mean by "separate medical history", if you need separate pages per patient, then you can group by the patient name and apply PageBreak=After in the GroupFooter section.
  2. The SubReport item cannot be used in page sections, because the latter are processed after the report data has been processed. At this moment the report data source is not available anymore. You can use all the report sections for it.
  3. See Report Events for more information. We however highly recommend avoiding usage of events as almost anything can be accomplished without them.
  4. Changing the size and position of report items at runtime is not recommended as this would change the report layout/pages and can lead to unexpected results. You can set location and size based on database values via Bindings.

All the best,
Steve
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
General Discussions
Asked by
Fernando
Top achievements
Rank 1
Answers by
Steve
Telerik team
Share this question
or