Was wondering how to disable Ctrl - E from a view ?
I’ve disabled editmode while inside the form, just need to disable via the view.
Was wondering how to disable Ctrl - E from a view ?
I’ve disabled editmode while inside the form, just need to disable via the view.
Subject: RESOLVED
Added the following to code to 2 events:
Sub Queryopen(Source As Notesuidocument, Mode As Integer, Isnewdoc As Variant, Continue As Variant)
If Source.IsNewDoc = False Then
Source.EditMode = False
End If
End Sub
Sub Querymodechange(Source As Notesuidocument, Continue As Variant)
If Source.IsNewDoc = False Then
continue = False
End If
End Sub