With VBScript program break off

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.

001_StopExample.fbz6 (1.853 KB)

Hi Paul,

Thank you for your response and thanks for your example too.



greeting

Sandro