ISProfileForm.Loading

Description

Returns True if the form is in the process of loading.

Syntax

object.Loading

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

Return Value

bool

Example

Display Loading for the form.

Dim aForm
Dim aFormInfo

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

Version information

Added in v7.8.0