0

Main.vbs と呼ばれる vbs ファイル。今、私は以下のように.htmlファイルにそれを埋め込みました:

    <HTML>
<HEAD>
<script type="text/vbscript">
  sub main
    const runminimized = 7
    const wait_for_end = false
    Set wshShell = CreateObject("WScript.Shell")
    WshShell.Run "D:\VA\Main.vbs",runminimized, wait_for_end
  end sub
</script>
</HEAD>
<BODY>
  Please make sure that the reuired Excel sheet which you are giving me to process isn in the proper folder. And first sheet has all the required columns - missing any of them could leads the Scripts to be failed.
  <button onclick="vbscript:main" >Click here to Run</button>
</BODY>
</HTML>

すべてのスクリプトが終了するまでページで実行されるタイマーを設定したいと思います。ここに設定できますか?

4

1 に答える 1