ISProfileForm.InCloseQuery

Description

This property is True if the process of the form closing is in progress.

Syntax

object.InCloseQuery

Part Attribute Type Description
object Required
The object always implements the ISProfileForm interface
Restriction: This property is readonly.

Return Value

bool

Example

Display InCloseQuery for the form.

Dim aForm
Dim aFormInfo

Set aForm = Profile.Form
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine &_   
  "In Close Query: " & aForm.InCloseQuery 
    
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface In Close Query cannot be found.

Version information

Added in v7.8.0