IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Windows Forms Discussion :

Problème backgroundWorker et progressBar


Sujet :

Windows Forms

  1. #1
    Membre à l'essai
    Inscrit en
    Mai 2012
    Messages
    19
    Détails du profil
    Informations forums :
    Inscription : Mai 2012
    Messages : 19
    Points : 17
    Points
    17
    Par défaut Problème backgroundWorker et progressBar
    Bonjour à tous, je suis débutant dans la programmation c#, et pour m'entraîner je me suis lancé dans la création d'un programme de recherche de fichiers.
    J'avais peu près réussi ce que je voulais faire, càd rechercher un fichier par nom, afficher les résultats et enregistrer les fichiers à un autre emplacement. Bref seule la dernière étape n'était pas ok, le reste, très basique, marchait. Mon seul problème était le freeze du programme lors de la recherche, après quelques prises d'infos ici et ailleurs j'ai essayé de mettre en place un BackGroundWorker ainsi qu'une progressBar.

    Pour cela je me suis aidé d'un tuto du site et de la MSDN, mais le problème désormais est que le programme freeze toujours autant, la recherche ne marche plus et la progressBar ne progresse pas !

    Voici mon code (désolé s'il est un peu 'rustique' et/ou pas très clair) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    using System;
    using System.IO;
    using System.Resources;
    using System.ComponentModel;
    using System.Drawing;
    using System.Windows.Forms;
    using System.Web.UI.WebControls;
    using System.Net;
    using System.Data;
    using System.Collections;
    using System.Data.OleDb;
    using System.Xml;
    using System.Runtime.InteropServices;
     
     
    namespace WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
                DriveInfo[] disques = DriveInfo.GetDrives();
                foreach (DriveInfo d in disques)
                {
                    listBox1.Items.Add(d.Name);
                }
                listBox1.Show();
            }
     
            private void button2_Click(object sender, EventArgs e)
            {
                textBox1.Clear();
                listBox1.ClearSelected();
            }
     
     
     
            private void button1_Click(object sender, EventArgs e)
            {
                if (button1.Text.Equals("Annuler"))
                {
                    bgw.CancelAsync();
                    button1.Text = "Démarrer";
                    progressBar1.Value = 0;
                }
                if (textBox1.Text == null)
                {
                    MessageBox.Show("Veuillez saisir un nom de fichier à recercher");
                }
     
     
                try
                {
     
     
                    string[] dirs;
                    dirs= Directory.GetFiles(@listBox1.SelectedItem.ToString(), textBox1.Text,SearchOption.AllDirectories);
                    bgw.RunWorkerAsync();
                    button1.Text = "Annuler";
     
                    //int filecount = dirs.GetUpperBound(0) + 1;
                    while (bgw.IsBusy)
                    {
                        foreach (string dir in dirs)
                        {
                            listBox2.Items.Add(dir);
                            listBox2.Show();
     
                        }
                    }
                    button1.Text = "Rechercher";
                }
                catch (Exception)
                {
     
     
                    MessageBox.Show("veuillez définir un emplacement de recherche");
                }
     
            }
     
            private void button3_Click(object sender, EventArgs e)
            {
                for (int i = 0; i < listBox2.Items.Count; i++)
                {
                    listBox2.SetSelected(i, true);
                }
            }
     
            private void button4_Click(object sender, EventArgs e)
            {
                for (int i = 0; i < listBox2.Items.Count; i++)
                {
                    listBox2.SetSelected(i, false);
                }
            }
     
            private void button5_Click(object sender, EventArgs e)
            {
                string[] values = new string[listBox2.Items.Count];
     
                try
                {
                    for (int i = 0; i < listBox2.Items.Count; i++)
                    { 
                        values[i] = listBox2.SelectedItems[i].ToString();
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }
                try
                {
                    for (int i = 0; i < values.Length; i++)
                    {
                        MessageBox.Show(values[i].ToString());
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }
            }
     
            private void bgw_DoWork(object sender, DoWorkEventArgs e)
            {
                BackgroundWorker worker = sender as BackgroundWorker;
     
                e.Result = Treatment((int)e.Argument,(int)e.Argument, worker, e);
     
            }
     
            private long Treatment(int nb, int max, BackgroundWorker worker, DoWorkEventArgs e)
            {
                long result = 0;
     
                if (worker.CancellationPending)
                {
                    e.Cancel = true;
                }
                else
                {
                    int pourcent = (int)(((double)max - (double)nb) / (double)max * 100);
                    worker.ReportProgress(pourcent);
     
                    if (nb <= 1)
                    {
                        result = 1;
                    }
                    else
                    {
                        System.Threading.Thread.Sleep(100);
                        result = Treatment(nb - 1, max, worker, e) + 1;
                    }
                }
     
                return result;
            }
     
     
            private void bgw_ProgressChanged(object sender, ProgressChangedEventArgs e)
            {
                this.progressBar1.Value = e.ProgressPercentage;
            }
     
            private void bgw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
            {
                if (e.Error != null)
                {
                    MessageBox.Show( "Une erreur est survenue ! Détail : " + e.Error.Message);
                }
                else if (e.Cancelled)
                {
                    MessageBox.Show( "Opération annulée !");
                }
                else
                {
                    MessageBox.Show("Opération terminée ! Résultat : " + e.Result.ToString());
                }
     
                button1.Text = "Démarrer";
     
                progressBar1.Value = 0;
            }
     
     
     
     
        }
    }
    Merci pour ceux qui auront le courage de lire et de m'aider.

  2. #2
    Membre à l'essai
    Inscrit en
    Mai 2012
    Messages
    19
    Détails du profil
    Informations forums :
    Inscription : Mai 2012
    Messages : 19
    Points : 17
    Points
    17
    Par défaut
    J'ai un peu modifié mon code, maintenant les résultats s'affichent mais des problèmes persistent :
    1- Ma progressBar ne progresse toujours pas
    2- Ma textBox1 et listBox1 qui respectivement mis en readonly et hide lors de la recherche ne reviennent pas à la normale une fois la recherche terminée
    3- mon bouton annuler qui n'annule rien du tout.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    using System;
    using System.IO;
    using System.Resources;
    using System.ComponentModel;
    using System.Drawing;
    using System.Windows.Forms;
    using System.Web.UI.WebControls;
    using System.Net;
    using System.Data;
    using System.Collections;
    using System.Data.OleDb;
    using System.Xml;
    using System.Runtime.InteropServices;
     
     
    namespace WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
                DriveInfo[] disques = DriveInfo.GetDrives();
                foreach (DriveInfo d in disques)
                {
                    listBox1.Items.Add(d.Name);
                }
                listBox1.Show();
            }
     
            private void button2_Click(object sender, EventArgs e)
            {
                textBox1.Clear();
                listBox1.ClearSelected();
            }
     
     
     
            private void button1_Click(object sender, EventArgs e)
            {
                bgw.RunWorkerAsync();
     
     
     
            }
     
     
     
            private void bgw_DoWork(object sender, DoWorkEventArgs e)
            {
                BackgroundWorker worker = sender as BackgroundWorker;
     
                listBox1.Hide();
                textBox1.ReadOnly = true;
                button6.Visible = true;
                if (textBox1.Text == null)
                {
                    MessageBox.Show("Veuillez saisir un nom de fichier à recercher");
                }
     
     
                try
                {
     
     
                    string[] dirs;
                    dirs = Directory.GetFiles(@listBox1.SelectedItem.ToString(), textBox1.Text, SearchOption.AllDirectories);
                    int filecount = dirs.GetUpperBound(0) + 1;
                    progressBar1.Show();
                    foreach (string dir in dirs)
                    {
     
     
     
                        listBox2.Items.Add(dir);
     
                        e.Result = Treatment((int)e.Argument,(int)e.Argument,worker, e);
                    }
     
     
                }
                catch (Exception)
                {
     
     
                    MessageBox.Show("veuillez définir un emplacement de recherche"); //AFFICHAGE DE L'EXCEPTION ????
                }
            }
     
     
     
            private long Treatment(int nb, int max, BackgroundWorker worker, DoWorkEventArgs e)
            {
                long result = 0;
     
                if (worker.CancellationPending)
                {
                    e.Cancel = true;
                }
                else
                {
                    int pourcent = (int)(((double)max - (double)nb) / (double)max * 100);
                    worker.ReportProgress(pourcent);
     
                    if (nb <= 1)
                    {
                        result = 1;
                    }
                    else
                    {
                        System.Threading.Thread.Sleep(100);
                        result = Treatment(nb - 1, max, worker, e) + 1;
                    }
                }
     
                return result;
            }
     
     
            private void bgw_ProgressChanged(object sender, ProgressChangedEventArgs e)
            {
                progressBar1.Value = e.ProgressPercentage;
     
     
            }
     
            private void bgw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
            {
                if (e.Error != null)
                {
                    MessageBox.Show( "Une erreur est survenue ! Détail : " + e.Error.Message);
                    listBox1.Visible = true;
                    textBox1.ReadOnly = false;
                }
                else if (e.Cancelled)
                {
                    MessageBox.Show( "Opération annulée !");
                    listBox1.Visible = true;
                    textBox1.ReadOnly = false;
                }
                else
                {
                    listBox2.Show();
     
                    listBox1.Visible = true;               
                    textBox1.ReadOnly = false;
                }
     
     
     
                progressBar1.Value = 0;
            }
     
            private void button3_Click(object sender, EventArgs e)
            {
                for (int i = 0; i < listBox2.Items.Count; i++)
                {
                    listBox2.SetSelected(i, true);
                }
            }
     
            private void button4_Click(object sender, EventArgs e)
            {
                for (int i = 0; i < listBox2.Items.Count; i++)
                {
                    listBox2.SetSelected(i, false);
                }
            }
     
            private void button5_Click(object sender, EventArgs e)
            {
                string[] values = new string[listBox2.Items.Count];
     
                try
                {
                    for (int i = 0; i < listBox2.Items.Count; i++)
                    {
                        values[i] = listBox2.SelectedItems[i].ToString();
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }
                try
                {
                    for (int i = 0; i < values.Length; i++)
                    {
                        MessageBox.Show(values[i].ToString());
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }
            }
     
            private void button6_Click(object sender, EventArgs e)
            {
                bgw.CancelAsync();
            }
     
     
        }
    }
    Je vous avoue que la méthode Treatment est un pur copier/coller, et j'ai du mal à la comprendre, je pensai qu'elle ferait avant la pBar mais apparemment non :/ .

Discussions similaires

  1. Problème avec ma progressBar
    Par kazylax dans le forum VB.NET
    Réponses: 5
    Dernier message: 28/06/2009, 00h31
  2. Problème d'affichage Progressbar
    Par Ricardo01 dans le forum Macros et VBA Excel
    Réponses: 6
    Dernier message: 12/06/2009, 13h33
  3. Problème BackgroundWorker dans un MDI
    Par fragmonster dans le forum Windows Forms
    Réponses: 1
    Dernier message: 12/02/2009, 10h23
  4. Problème BackgroundWorker - WebBrowser - Delegate
    Par Anified dans le forum Windows Forms
    Réponses: 7
    Dernier message: 09/11/2007, 18h01
  5. Problème avec une progressBar
    Par kurul1 dans le forum C++Builder
    Réponses: 13
    Dernier message: 29/03/2006, 10h29

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo