This property is True if characters typed in the memo control are converted from ANSI to OEM and then back to ANSI. It is not accessible in the Object Inspector.
object.OEMConvert
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISMemo interface |
bool
Display OEMConvert for the specified memo control.
Dim aMemo
Dim aMemoInfo
Set aMemo = Form.Controls_("memComment")
aMemoInfo =_
"ShortName: " & aMemo.ShortName & vbNewLine &_
"Type Name " & aMemo.TypeName & vbNewLine &_
"OEM Convert: " & aMemo.OEMConvert
Profile.MsgBox(aMemoInfo)