Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
vbscript を使用してマルチスレッドは可能ですか。複数のブラウザー/タブで Web ページをフォーム入力する必要があるため、完了時間を短縮できることを願っています。提案してください。
Vbscriptには、個別のスレッドを起動するためのメソッドがネイティブにありませんが、試してみると、他の何よりもマルチスレッドの「エミュレーション」になります。
このドキュメントを確認できます
vbscriptでURLを開くには、次のような方法を試すことができます。-
set wShell = CreateObject("Shell.Application") wShell.Open "C:\temp\abc.txt"