Hi,
I noticed that the @Commands [FileExit] and [ExitNotes] do not work anymore in the rich R8 client (notes.exe). They both produce a popup ‘Cannot execute the specified command’. If I try it through the old client (nlnotes.exe) it works ok, so I assume it has to do with the exclipse layer underneath.
Has anyone found a workaround for this, or can it be fixed in any new version?
TIA,
Marco
Subject: Should be Coming Soon
I’ve been working on an engagement with ISSL and we have been testing this. I expect that it will be resolved in a near release. There is also an issue with the @Command([WindowWorkspace]) and executing anything afterwards. It produces the same results.
Thank you.
Subject: You can simulate ALT+f4+enter in lotusscript:
You can simulate ALT+f4+enter in lotusscript:
[Declarations]
Declare Sub keybd_event Lib “user32.dll” (Byval bVk As Integer, Byval bScan As Integer, Byval dwFlags As Integer,Byval dwExtraInfo As Integer)
Sub Initialize
keybd_event 18,0,0,0 ' Alt down
keybd_event 115,0,0,0 ' F4 down
keybd_event 115,0,2,0 ' F4 up
keybd_event 18,0,2,0 ' Alt up
keybd_event 13,0,0,0 ' enter up
keybd_event 13,0,2,0 ' enter down
End Sub