I want to show progress bar during loading a Remote xml file. I am using Windows Application Form in Visual C# 2008 Express Edition.
private void button1_Cl
The problem is that you are using window thread, and the window can not been redrawn, until you finish button1_Click.
Use BackgroundWorker, you can report progress by calling backgroundworker.ReportProgress