Notifier - does not display notification

Hello.
I want to use Notifier at the beginning of a long list crawl
and hide Notifier at the end of the scan. It is not working. Where am I wrong?

Ondrej

Use a clock timer to separate the progress dialog "Start" block from the progress dialog "Dismiss" block. They cannot be in the same event/procedure.

Put your last two blocks in the clock timer event, along with a clockEnabled = false, and put a clockEnabled = true as the last block in your procedure

Like this:

image

3 Likes

Well thank you!!!

Hello.
I wrote those blocks exactly. Unfortunately, when I search for an item in the large list ... 13,500 items ... I don't see that message in Timer ....
Ondrej

Sometimes the activities being run after setting the progress dialog "take over" and start running before the dialog is displayed, and then it is only shown quickly at the end.

You may need to rework your blocks so that the progress dialog is started, and then the procedure is called (it may require another clock timer)

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.