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