ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous WINDEV functions
  • GO from Reports & Queries
  • Availability of the function
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
Indicates whether the code is run during the test of a report or query in Reports & Queries.
Example
// Code run during the test of a report or
// query in Reports & Queries?
IF InReportsAndQueriesMode() = True THEN
// Test mode in Reports & Queries
// Process to perform
...
ELSE
// Different mode
// Process to perform
...
END
Syntax
<Result> = InReportsAndQueriesMode()
<Result>: Boolean
  • True if the code is run during the test of a report or query in Reports & Queries,
  • False otherwise.
WEBDEV - Browser code This parameter always corresponds to False.
Remarks

GO from Reports & Queries

When the test of a report is run from "Reports & Queries" ("GO" button), InTestMode and InReportsAndQueriesMode return True.
We advise you to replace the standard test:
IF InTestMode() = True THEN
Trace("...")
END
by the following test:
IF InTestMode() = True AND InReportsAndQueriesMode() = False THEN
Trace("...")
END

Availability of the function

InReportsAndQueriesMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InReportsAndQueriesMode can be shared between several products without generating any compilation error.
Business / UI classification: Neutral code
Component: wd290vm.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help