ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with reports and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The AllModifiableWithReportsAndQueries property is used to determine if a report can be modified in Reports & Queries. When a report can be modified in Reports & Queries, you can:
  • modify the interface.
  • modify the code.
  • delete one or more controls.
Remarks:
  • This feature is defined in the editor when describing the report ("Options" tab in the description window, "Allow editing report in Reports and Queries", "Edit all (interface and code)").
  • The InterfaceModifiableWithReportsAndQueries property is used to determine if the interface of a report can be modified in Reports & Queries.
  • For more details, see Reports & Queries.
Example
// Check if the report is editable in Reports and Queries
IF RPT_MyReport.AllModifiableWithReportsAndQueries = True THEN
	// WINDEV mode?
	IF InWindowsMode() = True THEN
		// Open the report in Reports & Queries
		RunReportsAndQueries(RPT_MyReport)
	ELSE
		Info("This report can be modified in Reports & Queries")
	END
ELSE
	Info("This report cannot be modified in Reports & Queries")
END
Syntax
<Result> = <Report used>.AllModifiableWithReportsAndQueries
<Result>: Boolean
  • True if the specified report can be modified in Reports & Queries,
  • False otherwise.
<Report used>: Report name
Name of the report to be used.
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/18/2024

Send a report | Local help