Disable Word Shortcut Keys - Save, Print, New, Open Short Keys
Download Office Viewer Component and View Sample Projects
Disables MS Word Save Shortcut Keys
boolean WordDisableSaveHotKey(boolean Disable);
Disalbe: Disables the CTRL+S, SHIFT+F12, Alt+SHIFT+F2, F12
In the DocumentOpened event, you can call the WordDisableSavehotKey method to prevent the save hot key.
Sample Code:
EDOffice.WordDisableSaveHotKey"Standard"
End Sub
<SCRIPT FOR=OA1 EVENT= DocumentOpened ()>
DocumentOpenedEvent()
</SCRIPT>
[id(4), helpstring("Occurs when document is opened or new
document added.")]
void DocumentOpened();
Disables MS Word Print Shortcut Keys
boolean WordDisablePrintHotKey(boolean Disable);
Disalbe: Disables the CTRL+P, CTRL+SHIFT+F12, CTRL+F2, ALT+CTRL+I
Disables MS Word Copy Shortcut Keys
boolean WordDisableCopyHotKey(boolean Disable);
Disalbe: Disables the CTRL+C, CTRL+V, CTRL+X, SHIFT+DEL, SHIFT+INSERT,
ALT+CTRL+V, CTRL+SHIFT+C, CTRL+INSERTDisable Word Save Shortcut Keys.