Purpose A function that allows a user to configure report
settings needed by the extension to generate the report. A database exension, for example, may display a form that allows the user
to enter the database name, user name and password.
Description This function is called by ReportsDNA when a user clicks on the extension name in the Source listbox. The
name of the function does NOT have to be named SHOW_CONFIG. The name
is set by the extension author in the RNA_PROPERTIES function.
Public Sub SHOW_FORM() 'MANDATORY subroutine called to display the extension's configuration form 'The name of the function does not have to be SHOW_CONFIG - the name is set in the RNA_PROPERTIES function specified by the "form" key 'ReportsDNA will store 20 extension properties numbered 1 - 20 inclusive
Dim interpretParameters As Boolean 'flag that specifies if the parameters in a property should be returned statically (not evaluated) or dynamically (evaluated) interpretParameters = False 'set to FALSE to show parameter placeholders instead of their runtime values