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 :

Nombre instance dune classe


Sujet :

Windows Forms

  1. #1
    Membre éclairé Avatar de keub51
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    349
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 349
    Par défaut Nombre instance dune classe
    Bonjour !

    Mon programme se nomme windowsapplication1 et dedans il arrive que deux instances de la classe form2 soient crée par erreur car je ne voudrais qu'il ny en ai kune seule. comment verifier kil ny a kune seule instance ? ou comment bloquer la creation dune deuxieme instance ?

    merci

  2. #2
    Rédacteur
    Avatar de SaumonAgile
    Homme Profil pro
    Team leader
    Inscrit en
    Avril 2007
    Messages
    4 028
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Team leader
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2007
    Messages : 4 028
    Par défaut
    Utilise le design pattern Singleton. Tu trouves plein de litterature à ce sujet sur le net.
    Besoin d'un MessageBox amélioré ? InformationBox pour .NET 1.1, 2.0, 3.0, 3.5, 4.0 sous license Apache 2.0.

    Bonnes pratiques pour les accès aux données
    Débogage efficace en .NET
    LINQ to Objects : l'envers du décor

    Mon profil LinkedIn - MCT - MCPD WinForms - MCTS Applications Distribuées - MCTS WCF - MCTS WCF 4.0 - MCTS SQL Server 2008, Database Development - Mon blog - Twitter

  3. #3
    Membre éclairé Avatar de keub51
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    349
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 349
    Par défaut
    le design pattern ???????? lol ca me dit rien qui vaille ca mdr ...
    dapres ce que je sais c'est un modele, une espece d'exemple a suivre pour le programme ... c'est lui qui va dire : " tu ne crée qu'une seule instance de form2 hein !" nan ?

  4. #4
    Membre émérite
    Profil pro
    Inscrit en
    Juillet 2005
    Messages
    700
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Juillet 2005
    Messages : 700
    Par défaut
    http://msdn2.microsoft.com/en-us/library/ms998558.aspx


    C'est le plus simple des Pattern

    Faut pas en avoir peur...

  5. #5
    Membre éclairé Avatar de keub51
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    349
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 349
    Par défaut
    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
    using System;
     
    public class Singleton
    {
       private static Singleton instance;
     
       private Singleton() {}
     
       public static Singleton Instance
       {
          get 
          {
             if (instance == null)
             {
                instance = new Singleton();
             }
             return instance;
          }
       }
    }
    si je comprends bien si je veux qu'une clase chien n'est qu'une seule instance je dois faire ceci :

    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
    using System;
     
    public class Singleton
    {
       private static Singleton Chien;
     
       private Singleton() {}
     
       public static Singleton Chien
       {
          get 
          {
             if (Chien == null)
             {
                Chien = new Singleton();
             }
             return Chien;
          }
       }
    }
    ca veut dire que s'il y a deja une instance chien elle va retourner sa refenrece de facon a ce quil ny est qune seule instance Chien .


    c ca ?

  6. #6
    Rédacteur
    Avatar de SaumonAgile
    Homme Profil pro
    Team leader
    Inscrit en
    Avril 2007
    Messages
    4 028
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Team leader
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2007
    Messages : 4 028
    Par défaut
    Oui mais en C# ça s'écrit encore plus simplement
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    public class Chien
    {
        private static readonly Chien _instance = new Chien();
     
        public static Chien Instance { get { return _instance; } }
     
        private Chien(){}
    }
    Besoin d'un MessageBox amélioré ? InformationBox pour .NET 1.1, 2.0, 3.0, 3.5, 4.0 sous license Apache 2.0.

    Bonnes pratiques pour les accès aux données
    Débogage efficace en .NET
    LINQ to Objects : l'envers du décor

    Mon profil LinkedIn - MCT - MCPD WinForms - MCTS Applications Distribuées - MCTS WCF - MCTS WCF 4.0 - MCTS SQL Server 2008, Database Development - Mon blog - Twitter

  7. #7
    Membre éclairé Avatar de keub51
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    349
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 349
    Par défaut
    Donc ma classe devient ceci :

    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
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using MySql.Data.MySqlClient;
    using System.Data.SqlClient;
    using System.Collections;
    using System.Runtime.InteropServices;
     
    namespace WindowsApplication1
    {
     
     
     
        public partial class Form2 : Form
        {
            MySqlConnection connection;
            string ID="";
            Form1 f;
     
            private static readonly Form2 _instance = new Form2();
     
            public static Form2 Instance { get { return _instance; } }
     
     
     
            public Form2(Form1 f)
            {
                InitializeComponent();
                this.f=f;
                timer2.Enabled = true;
     
            }
     
            private void timer1_Tick(object sender, EventArgs e)
            {
                if (!this.Focused)
                    this.Focus();
            }
     
            private void label1_Click(object sender, EventArgs e)
            {
     
            }
     
            private void button1_MouseClick(object sender, MouseEventArgs e)
            {
                string s = TextBox1.Text;//s contient le code
                //il faut se connecter a la base de donnée
              if (s.IndexOf("'") == -1 && s.IndexOf("\"") == -1)
                    SQLConnect(s);
     
            }
     
            public void SQLConnect(String s1)
            {
                   if (s1 == "000")
                {
                    f.reduire();
                    f.active = true;
                    f.active_timer();
                    f.change_timer(45);
     
                    deblock(this.Handle);
                    this.Close();
                }
     
     
                string DBName = "bd_vendin_internet";
                string Server = "192.168.1.100";
                string Login = "root";
                string Password = "";
     
     
                connection = new MySqlConnection("Server=" + Server + ";Database="
                + DBName + ";User ID=" + Login + ";Password=" + Password + ";");
     
                try
                {
                    this.connection.Open();
                    //textBox1.Text ="OK";
                }
                //On verifie que MySql ne leve pas d'exception
                catch (MySqlException sqlEx)
                {
                    TextBox1.Text = sqlEx.Message;
                }
                catch (Exception ex)
                {
                    TextBox1.Text = ex.Message;
                }
                //il faut executer la requete sql :
                // Objet Command
     
     
                MySqlCommand command = new MySqlCommand("select id from client where numero ='" + s1 + "'", connection);
                    // Objet DataReader
                    MySqlDataReader reader = null;
                    try
                    {
                        reader = command.ExecuteReader();
                    }
                    catch (Exception e)
                    {
                        TextBox1.Text = e.Message;
                    }
     
                    Object[] row = null;
                    if (reader != null)
                        while (reader.Read())
                        {
                            if (row == null)
                                row = new Object[reader.FieldCount];
                            reader.GetValues(row);
                            for (int i = 0; i < row.GetLength(0); i++)
                            {
                                if (row[i] != DBNull.Value)
                                    ID = (string)row[i];
                            }
     
     
                        }
     
                    if (reader != null)
                    {
                      reader.Close();
                    }
     
                if (ID.Length != 12 && ID !="")
                {
                    int taille = ID.Length;
                    while(taille!=12)
                    {
                        ID = 0 +""+ ID;
                        taille++;
                    }
                }
     
                    string req = "select * from flux where heure_sortie='' and id_client ='" + ID + "' and log='non'";
     
                MySqlCommand command2 = new MySqlCommand(req, connection);
                // Objet DataReader
                MySqlDataReader reader2 = command2.ExecuteReader();
                Object[] row2 = null;
     
                while (reader2.Read())
                {
     
                    if (row2 == null)
                        row2 = new Object[reader2.FieldCount];
                    reader2.GetValues(row2);
                    for (int i = 0; i < row2.GetLength(0); i++)
                    {
                        if(i==0)
                          deblock(this.Handle);
     
                        f.reduire();
                        f.active = true;
                        f.active_timer();
                        f.change_timer(120);
                        //Form1.heure = (string)row2[i];
                        f.ID = this.ID;
                        this.Close();
     
                    }
                }
     
                reader2.Close();
                this.log(ID, connection);
     
     
                req = "select pass from pass";
                MySqlCommand command3 = new MySqlCommand(req, connection);
                // Objet DataReader
                MySqlDataReader reader3 = command3.ExecuteReader();
                Object[] row3 = null;
                while (reader3.Read())
                {
                    if (row3 == null)
                        row3 = new Object[reader3.FieldCount];
                    reader3.GetValues(row3);
                    ID = TextBox1.Text;
     
                    if (ID.Equals((string)row3[0]))//si le pass admin est bon
                    {
                        Form4 p = new Form4(ID, f);
                        f.Visible = false;
                        f.active = true;
                        f.desactive_timer();
                        deblock(this.Handle);
                        this.Close();
                    }
     
                }
                reader3.Close();
     
     
     
            }
     
            private void log(string E, MySqlConnection connection)
            {
                MySqlCommand cmd = new MySqlCommand("update flux set log='oui' where heure_sortie='' and id_client ='" + E + "' and log='non'", connection);       
                try
                {
                   MySqlDataReader rd = cmd.ExecuteReader();
                   rd.Close();
                }
                catch (Exception e)
                {
                    MessageBox.Show(e.Message);
                }
     
            }
     
            private void focus_form_Tick(object sender, EventArgs e)
            {
                this.Focus();
            }
     
     
          /*  [DllImport("user32.dll")]
            static extern bool SetCursorPos(int X, int Y);
     
            [DllImport("user32.dll")]
            static extern bool GetCursorPos(out Point lpPoint);
     
            [DllImport("user32.dll")]
            static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint dwData, int dwExtraInfo);
     
            [Flags]
            public enum MouseEventFlags
            {
                LEFTDOWN = 0x00000002,
                LEFTUP = 0x00000004,
                MIDDLEDOWN = 0x00000020,
                MIDDLEUP = 0x00000040,
                MOVE = 0x00000001,
                ABSOLUTE = 0x00008000,
                RIGHTDOWN = 0x00000008,
                RIGHTUP = 0x00000010
            } 
           */
     
            private void timer2_Tick(object sender, EventArgs e)
            {/*
                Point p = this.PointToClient(Cursor.Position);
                
                if (p.X < -100)
                    SetCursorPos(Screen.PrimaryScreen.Bounds.Width / 2, Screen.PrimaryScreen.Bounds.Height / 2);
                if (p.X > this.Width+100)
                    SetCursorPos(Screen.PrimaryScreen.Bounds.Width / 2, Screen.PrimaryScreen.Bounds.Height / 2);
                if (p.Y < -100)
                    SetCursorPos(Screen.PrimaryScreen.Bounds.Width / 2, Screen.PrimaryScreen.Bounds.Height / 2);
                if (p.Y > this.Height+100)
                    SetCursorPos(Screen.PrimaryScreen.Bounds.Width / 2, Screen.PrimaryScreen.Bounds.Height / 2);       
                */
            }
            #region Les fonctions de la dll qui vont nous servir
            [DllImport("sw_hook.dll")]
            private static extern bool InstallHook(IntPtr hwnd);
     
            [DllImport("sw_hook.dll")]
            private static extern bool UninstallHook(IntPtr hwnd);
            #endregion
     
            bool block()
            {
                return InstallHook(this.Handle);
            }
     
            bool deblock(IntPtr a)
            {
                return UninstallHook(a);
            }
     
            private void Form2_FormClosed(object sender, FormClosedEventArgs e)
            {
                deblock(this.Handle);
            }
     
            private void Form2_Load(object sender, EventArgs e)
            {
                block();
            }
     
            private void button1_Click(object sender, EventArgs e)
            {
     
            }
     
            private void TextBox1_KeyUp(object sender, KeyEventArgs e)
            {
                if (e.KeyValue == 13)
                {
                    string s = TextBox1.Text;//s contient le code
                    //il faut se connecter a la base de donnée
                    if (s.IndexOf("'") == -1 && s.IndexOf("\"") == -1)
                        SQLConnect(s);
                }
            }
     
     
        }
    }


    J'ai cru lire que le constructeur devait etre definie comme privé pour que le singleton soit le seul a controler l'intanciation ... c'est vrai ?

  8. #8
    Membre éclairé Avatar de keub51
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    349
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 349
    Par défaut
    et mon constructeur possede un argument ... comment je fait pour le gerer ?

  9. #9
    Rédacteur
    Avatar de SaumonAgile
    Homme Profil pro
    Team leader
    Inscrit en
    Avril 2007
    Messages
    4 028
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Team leader
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2007
    Messages : 4 028
    Par défaut
    Tu peux créer une méthode séparée pour initialiser ta fenêtre.
    Besoin d'un MessageBox amélioré ? InformationBox pour .NET 1.1, 2.0, 3.0, 3.5, 4.0 sous license Apache 2.0.

    Bonnes pratiques pour les accès aux données
    Débogage efficace en .NET
    LINQ to Objects : l'envers du décor

    Mon profil LinkedIn - MCT - MCPD WinForms - MCTS Applications Distribuées - MCTS WCF - MCTS WCF 4.0 - MCTS SQL Server 2008, Database Development - Mon blog - Twitter

  10. #10
    Membre Expert
    Avatar de s.n.a.f.u
    Homme Profil pro
    Développeur Web
    Inscrit en
    Août 2006
    Messages
    2 760
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Août 2006
    Messages : 2 760
    Par défaut
    Bonjour,

    Ca doit marcher avec le code que vous avez indiqué, mais je trouve que la récupération d'instance devrait être une méthode et non une propriété.

  11. #11
    Rédacteur
    Avatar de SaumonAgile
    Homme Profil pro
    Team leader
    Inscrit en
    Avril 2007
    Messages
    4 028
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Moselle (Lorraine)

    Informations professionnelles :
    Activité : Team leader
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2007
    Messages : 4 028
    Par défaut
    Citation Envoyé par jml94
    mais je trouve que la récupération d'instance devrait être une méthode et non une propriété.
    Peux tu argumenter stp ?
    Besoin d'un MessageBox amélioré ? InformationBox pour .NET 1.1, 2.0, 3.0, 3.5, 4.0 sous license Apache 2.0.

    Bonnes pratiques pour les accès aux données
    Débogage efficace en .NET
    LINQ to Objects : l'envers du décor

    Mon profil LinkedIn - MCT - MCPD WinForms - MCTS Applications Distribuées - MCTS WCF - MCTS WCF 4.0 - MCTS SQL Server 2008, Database Development - Mon blog - Twitter

Discussions similaires

  1. Envoi de messages à plusieurs instances dune classe
    Par yasinfo dans le forum Autres Diagrammes
    Réponses: 0
    Dernier message: 09/01/2012, 22h31
  2. Réponses: 7
    Dernier message: 03/12/2008, 15h18
  3. [D5] récupération d’une instance de classe.
    Par MelkInarian dans le forum Delphi
    Réponses: 3
    Dernier message: 19/05/2007, 20h08
  4. Instance de classes
    Par KymZen dans le forum Tkinter
    Réponses: 9
    Dernier message: 07/04/2005, 08h35
  5. Conditions de destruction des instances de classes
    Par elvivo dans le forum Général Python
    Réponses: 4
    Dernier message: 29/12/2004, 17h16

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