如果可执行文件可用,我有一个运行命令提示符的宏。在检查可执行文件是否可用之前,宏会等待 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
干杯