ISProfileForm.AsPointer

Description

The pointer to the form.

Syntax

object.AsPointer

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

Return Value

int

Example

Display some information about the form, including its pointer.

Dim aForm
Dim aFormInfo

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

In Profile Client v8 on User Interface As Pointer cannot be found.

Version information

Added in v7.8.0