Storage

Description

The amount of virtual storage in bytes that has been allocated for the DataWindow object.

Applies to

DataWindows

Syntax

Describe argument:

"DataWindow.Storage"

Usage


Canceling a query that uses too much storage

You can check this property in the script for the RetrieveRow event in the DataWindow control and cancel a query if it is consuming too much storage.

Examples

Example 1

[Visual Basic]
setting = dw_1.Describe("DataWindow.Storage")

IF Long(setting) > 50000 THEN RETURN 1