Hi,
How can I break a programm off with VBScript, with a successfull build-process?
Dim abbrechen
Abbrechen = MsgBox ("break up Script?", vbYESNO, "Script")
If abbrechen = 6 then
Continue = false
else
Continue = true
end if
greeting
Blueberry
Hi,
How can I break a programm off with VBScript, with a successfull build-process?
Dim abbrechen
Abbrechen = MsgBox ("break up Script?", vbYESNO, "Script")
If abbrechen = 6 then
Continue = false
else
Continue = true
end if
greeting
Blueberry
Hi Sandro,
You can't stop a build as successful from VBScript, you'll need to use the 'Stop Run' action to achieve what you want. I've attached an example project which demonstrates this.
Regards,
Paul.
Hi Paul,
Thank you for your response and thanks for your example too.
greeting
Sandro