Reputation: 3
I want to avoid an alert to pop-up when I run a compiled program in a batch scheduled environment. This because it would remain unnoticed and therefore the execution would not exit with an error code, but just hang. I'm not there to press the OK button. Any ideas? Thank you all
Upvotes: 0
Views: 85
Reputation: 5672
You can utilise the isdeployed
flag:
if isdeployed
%hardcode something
else
%show your popup
end
Upvotes: 1