[Solved] how to show the progress bar while loading the crystal report
Loading report is a single operation (two at most: query and displaying the viewer), so that you can’t split it do display progress accurately. You could display progressless bar or use animated image like this one: That operation has to run in parallel to UI thread (use Thread, Task or BackgroundWorker), otherwise your progress (progressbar … Read more