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.
Véase también
SendKeys statement
Glosario
¿Desea opinar sobre la Ayuda?
Ayuda sobre la Ayuda
Abrir la Ayuda en pantalla completa
Glosario
¿Desea opinar sobre la Ayuda?
Ayuda sobre la Ayuda
Abrir la Ayuda en pantalla completa