ISProfileForm.Hint

Description

The hint of the form.

Syntax

object.Hint

Part Attribute Type Description
object Required
The object always implements the ISProfileForm interface

Return Value

string

Example

Display some information about the form, including its hint.

Dim aForm
Dim aMessage

Set aForm = Profile.Form
aForm.Hint = "HintFormTest"
aMessage = "Form Info: " & vbNewLine & vbNewLine &_
  "- Caption: " & aForm.Caption & vbNewLine &_
  "- ID: " & aForm.ID & vbNewLine &_
  "- Name: " & aForm.Name_ & vbNewLine &_
  "- Hint: " & aForm.Hint & vbNewLine &_
  "- Show hint: " & aForm.ShowHint         
  
Profile.MsgBox(aMessage) 
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Hint cannot be found.

Version information

Added in v7.8.0