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

C# Discussion :

Problème d'entrée sur un switch


Sujet :

C#

  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Juillet 2010
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Juillet 2010
    Messages : 21
    Par défaut Problème d'entrée sur un switch
    Bonjour, j'ai un code en C# qui me donne du fil à retordre , je n'arrive pas à passer sur ma première fonction et à ainsi chercher les données dans ma base Access.

    Le but de mon code est de chercher dans ma base les données que j'aurai tapé dans un module de saisie puis de voir si la personne saisie existe ou pas.


    Je vous donne mon code pour que vous puissiez m'aider

    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
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    using System;
    using System.IO;
    using System.Collections;
    using System.Data;
    using System.Data.Common;
    using System.Data.OleDb;
    using System.Windows.Forms;
     
    using Spigraph.SpiLib;
    using Spigraph.Click2Data;
     
    // Ne pas changer le nom de la classe ainsi que celui de la méthode statique principale
    class SpiScript {
     
        const int NBR_MAX_INFOS_EXPDEST = 10;
        public enum TypSearch { Code, Nom }
     
    	public int Main(ScriptsInterface c2d) 
    	{
    		try{
    			MessageBox.Show("Here 1");
     
    			switch( c2d.FieldName )
    			{
     
    				case "PB_SEARCH_CODE" :
    					Search(TypSearch.Code, c2d.ControlGetValue("CodeClient"), c2d) ;
    					break;
                    		case "PB_SEARCH_NOM":
                        			Search(TypSearch.Nom, c2d.ControlGetValue("NomClient"), c2d);
                        			break;
                    		case "LW_ClientList":
                        			OnSelectClient(c2d);
                        			break;
                    		case "LW_RelationList":
                        			OnSelectRelation(c2d);
                        			break;
     
     
    			}//switch()
     
    			MessageBox.Show("Here Final");	
    			return 0; //OK
    		}
    		catch(Exception ex)
    		{
    			System.Diagnostics.EventLog.WriteEntry( "CLICK2DATA", "Script OnClick - Exception : "+ex.Message, System.Diagnostics.EventLogEntryType.Error);
    			return -1;
    		}
    	}//Main()
     
        /// <summary>
        /// Recherche multi-critere dans la BDD Excel en fonction des valeurs du formulaire
        /// </summary>
        private void Search(TypSearch a_typSearch, String a_value, ScriptsInterface c2d)
    	{
    	MessageBox.Show("Here Search1");
            a_value = a_value.ToUpper();
            //SpiLog.LogMessage(SpiMessages.InfoScript, "DEBUT Search(" + a_value +")", "Script_externe C#", "SpiScript.Main()"); //AVIRER
            DataControl lw = c2d.GetDataControl("LW_RelationList");
            lw.DeleteRows(); //RAZ
            lw = c2d.GetDataControl("LW_ClientList");
    		lw.DeleteRows(); //RAZ
     
    	MessageBox.Show("Here Search2");
     
     
    		//Recherche dans la BDD
            String sPathDataBase_QGI = c2d.GetConfigParameter("IFT_QGI_PATH", "base-indexation-V2-02.mdb");
            //SpiLog.LogMessage(SpiMessages.InfoScript, "IFT_QGI_PATH=" + sPathDataBase_QGI + "=", "Script_externe C#", "SpiScript.Main()"); //AVIRER
            if (String.IsNullOrEmpty(sPathDataBase_QGI) || !File.Exists(sPathDataBase_QGI))
            {   //Erreur sur chemin
                SpiMisc.PlaySound(@"C:\windows\media\DING.wav");
                c2d.ShowErrorMessage("Parametre 'IFT_QGI_PATH' non défini ou invalide !");
                return;
            }
            string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + sPathDataBase_QGI;
     
            String sSelect = "SELECT Code, Nom, CodePostal, NomVille FROM Intervenants WHERE IsClient='1' AND ";
            if (a_typSearch == TypSearch.Code)
            {
                //sSelect += " WHERE Code = '{0}' ;";
                sSelect += " Code LIKE '{0}%' ;";
            }
            else
            {
                sSelect += " Nom LIKE '{0}%' ;";
            }
     
    	MessageBox.Show("Here Connection");
     
            DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OleDb");
    		int iNbr = 0;
    		using (DbConnection connection = factory.CreateConnection())
    		{
    			connection.ConnectionString = connectionString;
    			using (DbCommand command = connection.CreateCommand())
    			{
    				command.CommandText = String.Format(sSelect, a_value) ;
                    SpiLog.LogMessage(SpiMessages.WarningScript, "command.CommandText=" + command.CommandText + "=", "Script_externe C#", "SpiScript.Main()"); //AVIRER
     
    				connection.Open();
    				using (DbDataReader dr = command.ExecuteReader())
    				{
    					while (dr.Read())
    					{	//Ajoute les éléments trouvés dans la ListView
                            string[] arRows = { dr["Nom"].ToString(), dr["CodePostal"].ToString(), dr["NomVille"].ToString() };
    						lw.AddRow( dr["Code"].ToString(), arRows );
    						iNbr++;
    					}
    				}
    			}
    		}
    		if( iNbr < 1 )
    		{	//Rien trouvé
    			SpiMisc.PlaySound(@"C:\windows\media\Ding.wav");
                MessageBox.Show("Aucun client ne correspond au critère !", "Recherche");
     
    		}
    	}//Search()
     
     
        /// <summary>
        /// Actions réalisées sur la sélection d'une ligne de la ListView CLIENT
        /// </summary>
        private void OnSelectClient(ScriptsInterface c2d)
        {
            DataControl lwClient = c2d.GetDataControl("LW_ClientList");
            int iNbrRows = lwClient.GetRowCount();
            int iRowSelected = lwClient.GetRowSelected();
            String sTag = (String)lwClient.GetRowTag(iRowSelected >= 0 ? iRowSelected : iNbrRows - 1);
            //c2d.ShowInfoMessage( String.Format( "La ListView contient {0} lignes. La ligne {1} est sélectionnée. Son Tag a la valeur '{2}'",  iNbrRows, iRowSelected, sTag ) ); //DEBUG AVIRER
            //Positionne le Code et le Nom
            c2d.ControlSetValue("CodeClient", sTag);
            String[] arCols = (String[])lwClient.GetRowColumns(iRowSelected >= 0 ? iRowSelected : iNbrRows - 1);
            c2d.ControlSetValue("NomClient", arCols[0]); //RS
     
            //Mise à jour de la list RELATION
            DataControl lw = c2d.GetDataControl("LW_RelationList");
            lw.DeleteRows(); //RAZ
            //Acquisition des champs de la Relation
            String sPathDataBase_QTRS = c2d.GetConfigParameter("IFT_QTRS_PATH", "base-indexation-V2-02.mdb");
            string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + sPathDataBase_QTRS;
     
            String sSelect = String.Format("SELECT GUniqIDExp, GUniqIDDest FROM RelCED WHERE CodeClient='{0}' ;", sTag);
     
            DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OleDb");
            int iNbr = 0;
            using (DbConnection connection = factory.CreateConnection())
            {
                connection.ConnectionString = connectionString;
                using (DbCommand command = connection.CreateCommand())
                {
                    command.CommandText = sSelect;
                    //SpiLog.LogMessage(SpiMessages.InfoScript, "command.CommandText=" + command.CommandText + "=", "Script_externe C#", "SpiScript.Main()"); //AVIRER
     
                    connection.Open();
                    using (DbDataReader dr = command.ExecuteReader())
                    {
                        while (dr.Read())
                        {	//Ajoute les éléments trouvés dans la ListView
                            String sPath_QTRS = c2d.GetConfigParameter("IFT_QTRS_PATH", "base-indexation-V2-02.mdb");
                            String[] arExp = GetExpDest(sPath_QTRS, dr["GUniqIDExp"].ToString());
                            String[] arDest = GetExpDest(sPath_QTRS, dr["GUniqIDDest"].ToString());
                            String[] arRows = new String[8];
                            if (arExp != null && arDest != null)
                            {
                                arRows[0] = arExp[0]; arRows[1] = arExp[1]; arRows[2] = arExp[2]; arRows[3] = arExp[3];
                                arRows[4] =  arDest[0]; arRows[5] = arDest[1]; arRows[6] = arDest[2]; arRows[7] = arDest[3] ;
                            }
                            else
                            {
                                arRows[0] = dr["GUniqIDExp"].ToString(); arRows[1] = ""; arRows[2] = ""; arRows[3] = "";
                                arRows[4] = dr["GUniqIDExp"].ToString(); arRows[5] = ""; arRows[6] = ""; arRows[7] = "";
                            }
                            String sTmp = dr["GUniqIDExp"].ToString() + "|" + dr["GUniqIDDest"].ToString();
                            lw.AddRow(sTmp, arRows);
                            iNbr++;
                        }
                    }
                }
            }
            if (iNbr < 1)
            {	//Rien trouvé
                SpiMisc.PlaySound(@"C:\windows\media\Ding.wav");
                MessageBox.Show("Aucun Expéditeur / Fournisseur ne correspond au critère !", "Recherche");
            }
            else
            {   //Ajout ligne blanche pour permettre RAZ des champs Expe et Dest
                String[] arRows = { "-", "-", " ", " ", "-", "-", " ", " " };
                lw.AddRow("|", arRows);
            }
     
            //c2d.ControlSetFocus("GUICHET");//SetFocus sur le champ suivant
     
        }//OnSelectClient()
     
     
     
     
        /// <summary>
        /// Actions réalisées sur la sélection d'une ligne de la ListView RELATION (RelCED + ExpDest)
        /// </summary>
        private void OnSelectRelation(ScriptsInterface c2d)
        {
            DataControl lw = c2d.GetDataControl("LW_RelationList");
            int iNbrRows = lw.GetRowCount();
            int iRowSelected = lw.GetRowSelected();
            String sTag = (String)lw.GetRowTag(iRowSelected >= 0 ? iRowSelected : iNbrRows - 1);
            //c2d.ShowInfoMessage(String.Format("La ListView contient {0} lignes. La ligne {1} est sélectionnée. Son Tag a la valeur '{2}'", iNbrRows, iRowSelected, sTag)); //DEBUG AVIRER
     
            String sPath_QTRS = c2d.GetConfigParameter("IFT_QTRS_PATH", "base-indexation-V2-02.mdb");
            String[] arTmp = sTag.Split("|".ToCharArray(), StringSplitOptions.None);
            String sUidExp = arTmp[0];
            String sUidDest = arTmp[1];
     
            //Positionne l'Expéditeur
            String[] arExp = GetExpDest(sPath_QTRS, sUidExp);
            if (arExp.Length > 0)
            {
                c2d.ControlSetValue("ExpGUniqID", sUidExp);
                c2d.ControlSetValue("ExpeNom", arExp[0]);
                c2d.ControlSetValue("ExpeCodePostal", arExp[1]);
                c2d.ControlSetValue("ExpeVille", arExp[2]);
                c2d.ControlSetValue("ExpePays", arExp[3]);
                c2d.ControlSetValue("ExpeNumVoie", arExp[4]);
                c2d.ControlSetValue("ExpeBTQ", arExp[5]);
                c2d.ControlSetValue("ExpeNomVoie", arExp[6]);
                c2d.ControlSetValue("ExpeComplement", arExp[7]);
                c2d.ControlSetValue("ExpeConsignes", arExp[8]);
            }
            else
            {
                c2d.ControlSetValue("ExpGUniqID", "");
                c2d.ControlSetValue("ExpeNom", "");
                c2d.ControlSetValue("ExpeCodePostal", "");
                c2d.ControlSetValue("ExpeVille", "");
                c2d.ControlSetValue("ExpePays", "");
                c2d.ControlSetValue("ExpeNumVoie", "");
                c2d.ControlSetValue("ExpeBTQ", "");
                c2d.ControlSetValue("ExpeNomVoie", "");
                c2d.ControlSetValue("ExpeComplement", "");
                c2d.ControlSetValue("ExpeConsignes", "");
            }
            //Positionne le Destinataire
            String[] arDest = GetExpDest(sPath_QTRS, sUidDest);
            if (arDest.Length > 0)
            {
                c2d.ControlSetValue("DestGUniqID", sUidDest);
                c2d.ControlSetValue("DestNom", arDest[0]);
                c2d.ControlSetValue("DestCodePostal", arDest[1]);
                c2d.ControlSetValue("DestVille", arDest[2]);
                c2d.ControlSetValue("DestPays", arDest[3]);
                c2d.ControlSetValue("DestNumVoie", arDest[4]);
                c2d.ControlSetValue("DestBTQ", arDest[5]);
                c2d.ControlSetValue("DestNomVoie", arDest[6]);
                c2d.ControlSetValue("DestComplement", arDest[7]);
                c2d.ControlSetValue("DestConsignes", arDest[8]);
            }
            else
            {
                c2d.ControlSetValue("DestGUniqID", "");
                c2d.ControlSetValue("DestNom", "");
                c2d.ControlSetValue("DestCodePostal", "");
                c2d.ControlSetValue("DestVille", "");
                c2d.ControlSetValue("DestPays", "");
                c2d.ControlSetValue("DestNumVoie", "");
                c2d.ControlSetValue("DestBTQ", "");
                c2d.ControlSetValue("DestNomVoie", "");
                c2d.ControlSetValue("DestComplement", "");
                c2d.ControlSetValue("DestConsignes", "");
            }
     
            c2d.ControlSetFocus("VoyagePoids");//SetFocus sur le champ suivant
     
        }//OnSelectRelation()
     
     
     
     
        private String[] GetExpDest(String a_Path_QTRS, String a_Uid)
        {
            string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + a_Path_QTRS;
     
            String[] arResultat = null;
     
            if (String.IsNullOrEmpty(a_Uid))
            {
                return new string[0];
            }
            DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OleDb");
            using (DbConnection connection = factory.CreateConnection())
            {
                connection.ConnectionString = connectionString;
                using (DbCommand command = connection.CreateCommand())
                {
     
                    command.CommandText = String.Format("SELECT Nom, CodePostal, NomVille, CodePays, NumVoie, BTQ, NomVoie, Complement, ConsignesENL, ConsignesLIV FROM ExpDest WHERE GUniqID='{0}' ;", a_Uid);
                    //SpiLog.LogMessage(SpiMessages.InfoScript, "command.CommandText=" + command.CommandText + "=", "Script_externe C#", "SpiScript.Main()"); //AVIRER
     
                    connection.Open();
                    using (DbDataReader dr = command.ExecuteReader())
                    {
                        if (dr.Read())
                        {
                            arResultat = new String[NBR_MAX_INFOS_EXPDEST];
                            arResultat[0] = dr["Nom"].ToString();
                            arResultat[1] = dr["CodePostal"].ToString();
                            arResultat[2] = dr["NomVille"].ToString();
                            arResultat[3] = dr["CodePays"].ToString();
                            arResultat[4] = dr["NumVoie"].ToString();
                            arResultat[5] = dr["BTQ"].ToString();
                            arResultat[6] = dr["NomVoie"].ToString();
                            arResultat[7] = dr["Complement"].ToString();
                            arResultat[8] = dr["ConsignesENL"].ToString() + "\r\n" + dr["ConsignesLIV"].ToString();
                        }
                    }
                }
            }
            return arResultat;
        }
     
     
    }//Class
    Merci d'avance

  2. #2
    Max
    Max est déconnecté
    Expert confirmé

    Avatar de Max
    Homme Profil pro
    Artisan développeur
    Inscrit en
    Mai 2007
    Messages
    2 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : France, Pyrénées Atlantiques (Aquitaine)

    Informations professionnelles :
    Activité : Artisan développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2007
    Messages : 2 954
    Par défaut
    Salut.

    La méthode "Main", celle que ton programme exécute au démarrage, doit être statique et n'a que quelques signatures possibles.

    Ici, tu as une méthode "Main" qui ne respecte aucun de ces deux points (non statique et prenant un ScriptsInterface en entrée), elle n'est donc pas reconnue comme point d'entrée de ton application, et donc pas appelée .

    Imaginons que ton application soit une application console, comment pourrais-tu lui passer un objet ScriptsInterface en ligne de commande ?

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Juillet 2010
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Juillet 2010
    Messages : 21
    Par défaut
    le scriptinterface est obligatoire vu que je l'utilise comme Script dans un logiciel
    puis je sais qu'il rentre à l'intérieur vu que la messagebox("Here 1") est affiché à chaque fois, c'est après à partir du switch qu'il ne se passe rien.

  4. #4
    Inactif  
    Homme Profil pro
    Chef de projet NTIC
    Inscrit en
    Janvier 2007
    Messages
    6 604
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 64
    Localisation : France

    Informations professionnelles :
    Activité : Chef de projet NTIC

    Informations forums :
    Inscription : Janvier 2007
    Messages : 6 604
    Par défaut
    Citation Envoyé par eusebe19 Voir le message
    Salut.

    La méthode "Main", celle que ton programme exécute au démarrage, doit être statique et n'a que quelques signatures possibles.
    et quel rapport avec son problème ?

    - une classe peut parfaitement avoir une méthode d'instance Main, on ne voit vraiment pas ce qui l'empécherait.

    - la méthode d'appel au démarrrage d'un éxécutable est paramètrable. (même si Main de la classe Program est proposé par défaut, il n'y a aucune obligation la dessus).


    Ici, la seule chose à avoir c'est le contenu de c2d.FieldName sous debugger ou autre.

    On peut supposer qu'il sait faire un exécutable qui se lance quand même.

    Ici, tu as une méthode "Main" qui ne respecte aucun de ces deux points (non statique et prenant un ScriptsInterface en entrée), elle n'est donc pas reconnue comme point d'entrée de ton application, et donc pas appelée .

    Imaginons que ton application soit une application console, comment pourrais-tu lui passer un objet ScriptsInterface en ligne de commande ?
    Total à coté de la plaque ....

  5. #5
    Max
    Max est déconnecté
    Expert confirmé

    Avatar de Max
    Homme Profil pro
    Artisan développeur
    Inscrit en
    Mai 2007
    Messages
    2 954
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 42
    Localisation : France, Pyrénées Atlantiques (Aquitaine)

    Informations professionnelles :
    Activité : Artisan développeur
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2007
    Messages : 2 954
    Par défaut
    Citation Envoyé par Bluedeep Voir le message
    et quel rapport avec son problème ?
    Si tu relis son message :
    Citation Envoyé par harisman87 Voir le message
    je n'arrive pas à passer sur ma première fonction
    Et le commentaire de son code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    // Ne pas changer le nom de la classe ainsi que celui de la méthode statique principale
    J'en ai déduit (à tort manifestement) qu'il considèrait sa fonction "Main" comme un "Main" par défaut d'entrée dans une application, et non comme une fonction qu'il appelle depuis ailleurs.
    Citation Envoyé par Bluedeep Voir le message
    - une classe peut parfaitement avoir une méthode d'instance Main, on ne voit vraiment pas ce qui l'empécherait.
    - la méthode d'appel au démarrrage d'un éxécutable est paramètrable. (même si Main de la classe Program est proposé par défaut, il n'y a aucune obligation la dessus).
    Ai-je écrit le contraire ? Une fois de plus, au vu de ce que me semblait être son problème, j'ai pensé que ça ne servait à rien de l'embrouiller avec le fait qu'il peut avoir des Main d'instance partout...
    Total à coté de la plaque ....
    Bah ouais, ça arrive à tout le monde , et je rajouterais même que cela ne m'empêche pas de rester courtois

  6. #6
    Membre averti
    Profil pro
    Inscrit en
    Juillet 2010
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Juillet 2010
    Messages : 21
    Par défaut
    Après plusieurs réflexions, on voit très bien que je ne peux pas rentrer dans la fonction Search qui est juste en dessous du Main(), donc je pense que c'est ici que j'ai une erreur ou dans le Main(). Je rajoute que c'est un Script pour le logiciel "Click to Data"

  7. #7
    Inactif  
    Homme Profil pro
    Chef de projet NTIC
    Inscrit en
    Janvier 2007
    Messages
    6 604
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 64
    Localisation : France

    Informations professionnelles :
    Activité : Chef de projet NTIC

    Informations forums :
    Inscription : Janvier 2007
    Messages : 6 604
    Par défaut
    Citation Envoyé par harisman87 Voir le message
    Après plusieurs réflexions, on voit très bien que je ne peux pas rentrer dans la fonction Search qui est juste en dessous du Main(), donc je pense que c'est ici que j'ai une erreur ou dans le Main(). Je rajoute que c'est un Script pour le logiciel "Click to Data"
    Comme déjà demandé plus haut : le contenu de c2d.FieldName sous debugger ou autre.

    Merci de répondre aux questions si tu veux qu'on t'aide !

  8. #8
    Membre averti
    Profil pro
    Inscrit en
    Juillet 2010
    Messages
    21
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Juillet 2010
    Messages : 21
    Par défaut
    Merci pour votre aide mais il me manque plein de détails que je n'ai pas donc je vais me débrouiller avec le concepteur du code.

    Merci encore

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [Routeur] probléme de connexion entre routeur et switch
    Par jules_diedhiou dans le forum Dépannage et Assistance
    Réponses: 2
    Dernier message: 26/08/2011, 11h32
  2. Réponses: 6
    Dernier message: 30/01/2009, 20h18
  3. Problème de rewriting sur page d'entrée
    Par fguilbert dans le forum Langage
    Réponses: 2
    Dernier message: 20/02/2006, 12h41
  4. Problème de lien sur date entre Access et MySQL-4.1
    Par michou42 dans le forum SQL Procédural
    Réponses: 2
    Dernier message: 04/04/2005, 23h31
  5. [CR] Problème de sélection sur un champ date
    Par noluc dans le forum SAP Crystal Reports
    Réponses: 2
    Dernier message: 21/11/2003, 16h56

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