i have used progress bar in my application..my application is working fine but the progress bar is blank..it does not show the working progress what is wrong??
i have used progress bar in my application..my application is working fine but the
Share
Probably you are performing the work in the main GUI thread. This causes all GUI events to be delayed until the task is finished.
Use a BackgroundWorker instead and use its ProgressChanged event to update the progress bar.
Also remember to set WorkerReportsProgress to
trueon your background worker.