The parent control of the specified edit control.
object.Parent
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
Display the short name and type name of the parent control associated with the specified edit control.
sub main()
Dim aEdit
Dim aParentControl
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
set aParentControl = aEdit.Parent
aEditInfo =_
"PARENT CONTROL: " & vbNewLine &_
"Short Name: " & aParentControl.ShortName & vbNewLine &_
"Type Name: " & aParentControl.TypeName
Profile.MsgBox(aEditInfo)
end sub
In Profile Client v8 on User Interface Parent can be found in
.