|
|
|
|
|
Clickable control in a report
The report editor allows you to propose clickable controls in the report viewer. When printing an invoice, the user wants to see all the details about the selected customer or all the characteristics of the products ordered? Nothing's easier, all you have to do is modify the click code of the control to perform the requested operation. In the report viewer, the clickable areas can be easily identified by the  symbol. Furthermore, these areas are colored in yellow when they are hovered by the mouse cursor. A report lists the customers by postal code. The user wants to display the customer form by clicking his name. The customer form already exists in the project, it must be linked to the click performed on the Name control in the report. To open the window directly from the report viewer: - Open the report in the report editor.
- Select the control to click and display the different events available ( "Code" option in the context menu).
- Write the following code in the "Click xxx" event:
Open(FEN_FicheClient, "Modif", MySource.IDClient)
This code is used to:- open the "WIN_CustomerForm" window in modification mode
- pass the identifier of the customer as parameter to the window (this identifier is found in the embedded query). The MySource keyword allows managing the source of the report.
Caution: If a query is associated with the report, the query is automatically closed at the end of report execution.. The items of this query are no longer accessible.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|