This property is True if the specified combo box was modified. The property is not accessible in the Object Inspector.
object.isModified
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISComboBox interface |
bool
Display isModified for the specified combo box.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("cmbInform")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"TypeName: " & aControl.TypeName & vbNewLine &_
"IsModified: " & aControl.isModified
Profile.MsgBox(aControlInfo)