This property is True if the specified memo control was modified. It is not accessible in the Object Inspector.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISMemo interface |
bool
Display isModified for the specified memo control.
Dim aMemo
Dim aMemoInfo
Set aMemo = Form.Controls_("memComment")
aMemoInfo =_
"ShortName: " & aMemo.ShortName & vbNewLine &_
"TypeName: " & aMemo.TypeName & vbNewLine &_
"Is Modified: " & aMemo.isModified
Profile.MsgBox(aMemoInfo)