This property returns the list of names of all form child controls.
object.ControlsList
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfileForm interface |
Display the list of names of all form child controls.
Dim aForm
Dim aFormInfo
Dim aControlList
Set aForm = Profile.Form
set aControlList = aForm.ControlsList
aFormInfo =_
"Short Name: " & aForm.ShortName & vbNewLine &_
"TypeName: " & aForm.TypeName & vbNewLine & vbNewLine &_
"Control list text: " & vbNewLine & aControlList.Text
Profile.MsgBox(aFormInfo)
In Profile Client v8 on User Interface Controls can be found in
.