The short name of the specified combo box.
object.ShortName
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISComboBox interface |
string
Display some information about the specified combo box, including its short name.
Dim aComboBox
Dim aControlInfo
Set aComboBox = Form.Controls_("cmbInform")
aControlInfo =_
"Caption: " & aComboBox.Caption & vbNewLine &_
"Width: " & aComboBox.Width & vbNewLine &_
"Height: " & aComboBox.Height & vbNewLine &_
"Hint: " & aComboBox.Hint & vbNewLine &_
"Left: " & aComboBox.Left & vbNewLine &_
"Top: " & aComboBox.Top & vbNewLine &_
"Tag: " & aComboBox.Tag & vbNewLine &_
"ShortName: " & aComboBox.ShortName & vbNewLine &_
"TypeName: " & aComboBox.TypeName
Profile.MsgBox(aControlInfo) In Profile Client v8 on User Interface Short Name can be found in .