Returns True if the form is in the process of loading.
object.Loading
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfileForm interface |
bool
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)