aqDlg Object

Applies to TestComplete 15.63, last modified on April 10, 2024

Description

The aqDlg object contains methods for displaying message boxes and simple dialogs. This object can only be used in script extensions. It does not exist in regular TestComplete scripts.

Note that you can skip the object name (aqDlg) when calling the object’s methods. For example, the following two lines are equivalent:

JScript

aqDlg.ShowMessage("Hello, world!");
ShowMessage("Hello, world!");

VBScript

aqDlg.ShowMessage "Hello, world!"
ShowMessage "Hello, world!"

Members

Example

For examples of using the aqDlg object, see the Handling Errors in Script Extensions.

See Also

Script Extensions
Objects Available to Script Extensions

Highlight search results