Problem using TeamStudio Configurator via LotusScript

I need to identify all the databases containing a specific string on a server. I use a function from TeamStudio Configurator (ConfyFindAndReplace).

This function has a parameter (wRunFlags = CONFY_RUN_SILENT) that should allow avoiding the display of the status bar, but it doesn’t seem to work.

Everytime a database search is completed, I get a popup indicating if the search string has been found and I need to click the close button in order to step to the next database search.

Can anyone help?

Subject: Solution: Problem using TeamStudio Configurator via LotusScript

This is a beginner’s error. Thanks to the timely help of the teamstudio support, I now see that this CONFY_RUN_SILENT variable wasn’t even declared in my code. The compiler didn’t highlight it since the module didn’t contain the “Option Declare” statement and the error handling didn’t highlight it at runtime either.

The call to the TeamStudio Configurator function now seems to work perfectly.

Thanks.