ISMemo.ShowHint

Description

This property is True if the pop-up hint is allowed for the specified memo control.

Syntax

object.ShowHint

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

Return Value

bool

Example

Display ShowHint for the specified memo control.

Dim aMemo
Dim aMemoInfo

Set aMemo = Form.Controls_("memComment")

aMemoInfo =_
  "Short Name: " & aMemo.ShortName & vbNewLine &_ 
  "Hint: " & aMemo.Hint & vbNewLine &_
  "Show hint: " & aMemo.ShowHint                 
  
Profile.MsgBox(aMemoInfo) 
Note: This macro should be executed in any event handler of the form control.

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

Version information

Added in v7.8.0