実行可能ファイルが利用可能な場合にコマンド プロンプトを実行するマクロがあります。マクロは、実行可能ファイルが利用可能かどうかを確認する前に 5 分間待機します。問題は、このロックが優れていることです。私がやりたいのは、制御を 5 分間ユーザーに戻すことです。
これは、現時点でのコードのビットの外観です。
Do Until TuflowEx < Range("Exe").Value ' Check if number of executables running is less than the user specified maximum
Application.Wait (Now + TimeValue("0:05:00")) ' Wait 5 minutes before checking again
TuflowEx = TuEx() ' Run TuEx to get the currently active number of executables
Loop
乾杯