Help for this page

Select Code to Download


  1. or download this
    use strict ;
    use warnings ;
    ...
    $ex->run('Notepad') ;
    sleep(0.1) ;
    $ex->sendkeys("Hello World!") ;
    
  2. or download this
    Set wshshell = wscript.CreateObject("WScript.Shell") 
    Wshshell.run "Notepad" 
    wscript.sleep 100
    wshshell.sendkeys "Hello World!"