LOAD SILENTLY

how to load report silently without showing the text "Accessing Datasource" at start all whateva status of report should show on only status bar ??

Comments

  • edited November 2009
    Hello,

    See how it's done in the demo.exe:
          Config.ReportSettings.StartProgress += new EventHandler(ReportSettings_StartProgress);
          Config.ReportSettings.Progress += new ProgressEventHandler(ReportSettings_Progress);
          Config.ReportSettings.FinishProgress += new EventHandler(ReportSettings_FinishProgress);
    
        private void ReportSettings_StartProgress(object sender, EventArgs e)
        {
        }
    
        private void ReportSettings_Progress(object sender, ProgressEventArgs e)
        {
          previewControl1.ShowStatus(e.Message);
        }
    
        private void ReportSettings_FinishProgress(object sender, EventArgs e)
        {
        }
    
    If you want to turn off the progress events, set
    Config.ReportSettings.ShowProgress = false;

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.