The hint of the specified edit control.
object.Hint
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
string
Display some information about the specified edit control, including its hint.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
"Caption: " & aEdit.Caption & vbNewLine &_
"Hint: " & aEdit.Hint & vbNewLine &_
"Show hint: " & aEdit.ShowHint
Profile.MsgBox(aEditInfo)
In Profile Client v8 on User Interface Hint can be found in
.