Hi, the Subject basically says it all.
I am trying to stop or cancel a report mid-execution. Have you done so before and if so, how?
Kind regards,
Bennet
Hi, the Subject basically says it all.
I am trying to stop or cancel a report mid-execution. Have you done so before and if so, how?
Kind regards,
Bennet
Hello,
just close the main routine:
function main(){
if (!ShowDialog)
return false // könnte auch true sein, macht keinen Unterschied
}
function ShowDialog(){
...
return false
}
Press cancel and start to pray :-) Sometimes it works, sometimes not...
Hi Runé,
thank you for your response! I am afraid I was not clear about what I actually want.
I am looking for a way to stop the report in the code, as in a break stops a for loop, but for the whole ARIS Report.
Kind regards, Bennet Möller
I will try to make it clearer. So I have a report that shows a list of models ina dialog and you can select those you want to versionize. If no models are seleced I want the report to stop, so I need some kind of method I can call to stop the report when no models are selected in the dialog.
Hello,
just close the main routine:
function main(){
if (!ShowDialog)
return false // könnte auch true sein, macht keinen Unterschied
}
function ShowDialog(){
...
return false
}