When setting the WSH .Hotkey property how is the hotkey value set to the
default "None"? Whatever I use becomes the hotkey since the value assigned
to this property must be a string.
Dim oShell As New IWshShell_Class
Dim oShortCut As New IWshShortcut_Class
oShortCut.Hotkey = ??? 'Default..."None"
oShortCut.Save
Set oShell = Nothing
Set oShortCut = Nothing
I cant simply not refer to the hotkey property because it is overwriting an
already existing shortcut that has a hotkey in place but needs to be
overwritten.