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