LOTUSSCRIPT LANGUAGE


Examples: SendKeys statement
' Use Shell to open the Windows Notepad, then SendKeys to send
' a note entered by the user to Notepad. The user can continue
' composing the note and use Notepad to save it as
' a text file.
Sub WriteNote
  Dim taskId As Integer, note As String
  note$ = InputBox("Start your note:")  
  taskId% = Shell("notepad.exe", 1)
  SendKeys note$, TRUE
End Sub
WriteNote               ' Call the WriteNote sub.

See Also