View Single Post
  #1  
Old 04-08-2003, 09:03 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,003
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
Reply With Quote