I'm using the HPC Excel Driver, and need to resolve this error found in the event log (with actual message removed):
Popup window 'Microsoft Excel' may be blocking job progress. Consider changing your workbook to remove this popup or configuring popup bashing to automatically dismiss it. Window Message: '---- (the message) ----' Window Class: '#32770'
I have added this to my code, but it isn't effective.
var configuration = new PopupBasherConfiguration
{
Period = 500
};
I have not found any documentation about this object or how to use it. It should be documented here: Microsoft.Hpc.Excel Namespace, but there is no mention of it, or how to "configure popup bashing" as hinted at in the error message.
Any suggestions?
Any reference documents that talk about this?
Found some documentation... the HPC SDK has some sample applications. In two of them ("xlcmd" and "HelloWorldService"), the
app.config
/program.config
file has lots of comments that provide the documentation.Without all the comments, here's what is needed in the
.config
file:And further down in the
.config
file: