|
|
|
|
|
iGroupAdd (Function) In french: iGroupeAjoute Adds a report to a group of reports. Remark: Implementing a group of reports is used to display a specific combo box in the report viewer. The reports found in the group are listed in this combo box and they can be displayed in the report viewer. This features allows you to propose to the user: - a report in portrait mode and in landscape mode.
- a report in different formats: A3, A4, letter US, ...
// Print destination iDestination(iViewer) // Create the group of reports iGroupAdd(RPT_TO_Year_A4_Portrait, 2012) iGroupAdd(RPT_TO_Year_A4_Landscape, 2012) // Display first report of the group in the report viewer iGroupPrint()
Syntax
<Result> = iGroupAdd(<Report name> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Integer Index of the report in the group of reports. <Report name>: Character string Name of report that will be added into the group. <Parameter 1>: Optional parameters (the type corresponds to the parameter type) Optional parameter expected by the report. This parameter was defined in the "Open" event of the report. This parameter can be the name of a view, the name of a memory area, etc. This parameter will be passed to the report when it is displayed in the report viewer or when it is printed. <Parameter N>: Optional parameters (the type corresponds to the parameter type) Optional parameter expected by the report. This parameter was defined in the "Open" event of the report. This parameter can be the name of a view, the name of a memory area, etc. This parameter will be passed to the report when it is displayed in the report viewer or when it is printed. Remarks - Parameters passed by address are not supported: when called, iGroupAdd copies the value of parameters.
- An icon and a caption are added by default into the combo box. This information can be customized by iGroupConfigure. The default caption corresponds to the report dimensions and orientation.
- The report selected by default can be configured by iGroupPrint.
Related Examples:
|
Training (WINDEV): WD Reports
[ + ] This example presents the different methods for creating a report: - prints based on different data sources (queries, variables, ...) - prints based on controls (Table, Spreadsheet, PVT, ...) - printing composite reports - specific prints (portrait/landscape, report with watermark, report with bar code, ...)
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|