6 lines
209 B
VB.net
6 lines
209 B
VB.net
|
|
Dim WshShell
|
||
|
|
Set WshShell = WScript.CreateObject("WScript.Shell")
|
||
|
|
WshShell.SendKeys "{Down}{F2}"
|
||
|
|
WScript.Sleep 1000 ' one-second delay
|
||
|
|
WshShell.SendKeys "{Left}{Left}{BkSp}{BkSp}Some text here.~" ' ~ -> Enter
|