The current name of the specified edit control.
object.CurrentControlName()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
string
Display some information about the specified edit control, including its current name.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
"Short Name: " & aEdit.ShortName & vbNewLine &_
"TypeName: " & aEdit.TypeName & vbNewLine &_
"Current Control Name: " & aEdit.CurrentControlName
Profile.MsgBox(aEditInfo)
In Profile Client v8 on User Interface Current Control Name can be found in
.