Different between Report.RefreshSilent() and Report.Refresh() in DIAdem

Updated Oct 9, 2024

Reported In

Software

  • DIAdem

Issue Details

I want to know what is the different between Report.RefreshSilent() and Report.Refresh() properties in DIAdem?
 

Solution

In DIAdem, the Report.Refresh() and Report.RefreshSilent() methods are used to update the report, but they function slightly differently:
  • Report.Refresh(): This method brings the REPORT window to the front and then updates it. This means that any changes made to the report will be visible immediately after the refresh.
  • Report.RefreshSilent(): This method updates the REPORT first and then brings it to the front. If the REPORT window is already visible, there might not be a noticeable difference between this and the Report.Refresh()
Both methods are useful for ensuring that the report reflects the latest data and changes. However, if you want to avoid the report window flickering or being brought to the front during updates, you might prefer using Report.RefreshSilent().