Well, what I am trying to do is show a animated gif while it reads a directory full of files, however the UI freezes, which is ok, but i would like to keep the gif running till the operation is finished. Any ideas?

I am doing it on a Windows Form using VS2010 C#

link|improve this question
feedback

4 Answers

Here is some example code how you can Load your files aysnchronous. Maybe it helps you. I like this way more than using DoEvents. With DoEvents I had already have some ungood side-effects, therefore I try not to use it.

BackgroundWorker bgWorker = new BackgroundWorker() { WorkerReportsProgress=true}; 
bgWorker.DoWork += (s, e) => {     
    // Load here your file/s     
    // Use bgWorker.ReportProgress(); to report the current progress 
}; 
bgWorker.ProgressChanged+=(s,e)=>{     
    // Here you will be informed about progress and here it is save to change/show progress. You can access from here savely a ProgressBars or another control. 
}; 
bgWorker.RunWorkerCompleted += (s, e) => {     
// Here you will be informed if the job is done.
// Use this event to unlock your gui
}; 
bgWorker.RunWorkerAsync(); 
link|improve this answer
feedback

You have two options.

  1. Start a separate thread to handle the file operations.

  2. periodically call Application.DoEvents() within the file loop. That will cause your app to process pending messages (thus updating your UI), but will negatively impact the speed of the file processing loop.

Posting from my phone so no example links.

link|improve this answer
feedback

Run enumeration is a separate thread and update the GUI in the main thread.

link|improve this answer
Do have any any article that talks about it? Because i have no idea how to do that – Eyla Dec 31 '10 at 20:14
feedback

Would something like this work with backgroundWorker?

    private void buttonRename_Click(object sender, EventArgs e)
    {
         backgroundWorker1.RunWorkerAsync();
    }
    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    {
        foreach (ListViewItem myitem in listView.Items)
            {
                 try
                 {
                       //Rename
                 }
                 catch
                 {
                 }
            }    
     }
link|improve this answer
Please don't post answers for asking things. Make a new post. BTW, I would not directly access the ListView in the BG-Worker. Maybe there will be no exception be thrown (I never tried) by only iterating and reading the items, but it's definitively not a good way. Create a list of your file names and work then with this list in your BG-Worker. – HCL Dec 31 '10 at 20:39
@HCL, @Eyla: But don't post a question that is an exact duplicate, either. You should edit your original question here to add the code you've come up with. – Cody Gray Jan 1 '11 at 7:55
@Code Gray: Is it really an exact duplicate? The initial question was about an animated gif. I don't like questions that are changed after someone has answered. This makes most of the answers invalid because they are out of the context then. I don't think this is fair for the people who have responeded to the initial question. – HCL Jan 1 '11 at 11:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.