|
#1
|
|||
|
|||
Can I stop a build from another process?
Yes -- Create a Run Script step with the VBScript code of:
Code:
Set objShell = CreateObject("WScript.Shell") If objShell.AppActivate("ProjectToStop.bld - Visual Build Professional") Then objShell.SendKeys "^{Break}" ' send Ctrl+Break End If |
|
|