Как отключить показ ProgressForm при построении и отображении отчёта?

Question: Как отключить показ ProgressForm при построении и отображении отчёта?

Answer:

Вы можете отключить показ окна в EnvironmentSettings:
Report report = new Report();
report.LoadPrepared("1.fpx");
EnvironmentSettings s = new EnvironmentSettings();
s.ReportSettings.ShowProgress = false;
report.Show();