ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Print functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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, ...
Example
// 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:
WD Reports 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, ...)
Component: wd290etat.dll
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help