When it is done, it returns a message: “Export Done!” and pauses execution of the script until I click on the OK button. Is there a way to turn messages off
so that they do not appear while the script is running?
There’s a command to turn off these pop-up windows. If you add the following to the beginning of your script, the windows will go away:
Dim appint as BOApplication
Set appint = Application
appint.Interactive = FALSE
Basically, what this does is turn off BusinessObjects’ Interactive mode, the mode under which the application is normally run and which allows the pop-up windows to appear.
But be careful.
This will make any and all pop-up windows go away. Once set for a script, this setting is true for the whole BusinessObjects session.
So it may be a good idea to set
appint.Interactive = TRUE
at the end of your script to avoid hiding other helpful windows during the normal interactive session.
When it is done, it returns a message: “Export Done!” and pauses execution of the script until I click on the OK button. Is there a way to turn messages off
so that they do not appear while the script is running?