![]() | Type | Description | ||
| Boolean | A boolean expression that indicates whether the control is running the overtype/overstrike or insert mode. |
The following VB sample disables Overtype/Overstrike mode, when user presses Insert key:
Private Sub Edit1_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = vbKeyInsert) Then
KeyCode = 0
End If
End Sub